├── .gitattributes ├── .github └── workflows │ └── build-sphinx.yml ├── .gitignore ├── .graphics ├── all-results-example.png ├── azure-create-computer-vision.png ├── azure-create-resource.png ├── azure-dashboard.png ├── azure-get-keys.png ├── azure-no-resources.png ├── azure-start-free-account.png ├── caltech-round.png ├── caltech-round.svg ├── clara-barton-page.jpg ├── clara-barton-page.png ├── example-tsv-file.png ├── glaser-example-google.jpg ├── glaser-example-google.png ├── google-api-create-credentials-button.png ├── google-api-credentials-menu.png ├── google-bounding-box-example.png ├── google-cloud-add-api.png ├── google-cloud-new-project.png ├── google-cloud-platform-api-option.png ├── google-cloud-platform.png ├── google-create-credentials.png ├── google-create-oauth-client-id.png ├── google-create-service-account-key.png ├── google-create-service-account.png ├── google-download-json.png ├── google-gcp-add-billing-account.png ├── google-gcp-billing.png ├── google-gcp-create-project.png ├── google-gcp-create-service-account-key.png ├── google-gcp-free.png ├── google-gcp-new-project.png ├── google-gcp-no-billing.png ├── google-gcp-role.png ├── google-oauth-consent-info.png ├── google-oauth-create-client-id.png ├── google-select-project.png ├── google-service-account-info.png ├── handprint-asciinema.png ├── handprint-demo.gif ├── handprint-preview-image.png ├── linux-32.png ├── mac-os-32.png ├── noun_Hand_733265.png ├── noun_Hand_733265.svg ├── os-windows-32.png └── sample-annotated-image.png ├── CHANGES.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README-PAPER.md ├── README.md ├── SUPPORT.md ├── bin └── handprint ├── codemeta.json ├── dev ├── icon │ ├── README.md │ ├── handprint-icon-white.png │ ├── handprint-icon-white.svg │ ├── handprint-icon.svg │ └── noun_Hand_733265.svg ├── scripts │ └── create-pyz └── services │ ├── google │ ├── Detect handwriting in images - Cloud Vision API - Google Cloud.pdf │ ├── Detect text in images - Cloud Vision API - Google Cloud.pdf │ ├── Document Text Tutorial - Cloud Vision API - Google Cloud.pdf │ ├── Google-vision-notes.md │ ├── Package google.cloud.vision.v1p4beta1 - Cloud Vision API.pdf │ ├── README.md │ ├── Types for Google Cloud Vision v1 API - google-cloud-vision documentation.pdf │ ├── google cloud vision api feature types 2018-10-25.pdf │ └── google.cloud.vision_v1.types.image_annotator - google-cloud-vision documentation.pdf │ └── sample-output │ ├── README.md │ ├── dag-304-DAG_1_1_8_0029.handprint-all.png │ ├── dag-304-DAG_1_1_8_0029.handprint-amazon-rekognition.json │ ├── dag-304-DAG_1_1_8_0029.handprint-amazon-rekognition.png │ ├── dag-304-DAG_1_1_8_0029.handprint-amazon-rekognition.txt │ ├── dag-304-DAG_1_1_8_0029.handprint-amazon-textract.json │ ├── dag-304-DAG_1_1_8_0029.handprint-amazon-textract.png │ ├── dag-304-DAG_1_1_8_0029.handprint-amazon-textract.txt │ ├── dag-304-DAG_1_1_8_0029.handprint-google.json │ ├── dag-304-DAG_1_1_8_0029.handprint-google.png │ ├── dag-304-DAG_1_1_8_0029.handprint-google.txt │ ├── dag-304-DAG_1_1_8_0029.handprint-microsoft.json │ ├── dag-304-DAG_1_1_8_0029.handprint-microsoft.png │ ├── dag-304-DAG_1_1_8_0029.handprint-microsoft.txt │ └── dag-304-DAG_1_1_8_0029.jp2 ├── docs ├── .nojekyll ├── Makefile ├── README.md ├── _static │ ├── css │ │ └── custom.css │ ├── media │ │ ├── all-results-example.png │ │ ├── clara-barton-page.jpg │ │ ├── favicon.ico │ │ ├── glaser-example-google.jpg │ │ ├── handprint-icon-white.png │ │ ├── handprint-icon-white.svg │ │ └── handprint-icon.svg │ └── versions.json ├── advanced-usage.md ├── basic-usage.md ├── colophon.md ├── command-summary.md ├── conf.py ├── configuration.md ├── index.md ├── installation.md └── known-issues.md ├── handprint ├── __init__.py ├── __main__.py ├── comparison.py ├── credentials │ ├── __init__.py │ ├── amazon_auth.py │ ├── base.py │ ├── credentials_files.py │ ├── google_auth.py │ └── microsoft_auth.py ├── exceptions.py ├── exit_codes.py ├── images.py ├── main_body.py ├── manager.py └── services │ ├── __init__.py │ ├── amazon.py │ ├── base.py │ ├── google.py │ └── microsoft.py ├── pubs └── joss │ ├── .gitignore │ ├── H96566k.handprint-all.png │ ├── Makefile │ ├── README.md │ ├── notes.txt │ ├── paper.bib │ └── paper.md ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── data ├── README.md ├── bad-images │ └── corrupted-image.png ├── caltech-archives │ ├── caltech-archives-urls.txt │ └── glaser │ │ ├── DAG_5_1_6 1952-1957 Notebook VI p2.jpg │ │ ├── DAG_5_2_1 1950-1953 notebook VIII p7.jpg │ │ ├── README.md │ │ ├── dag-285-DAG_1_1_8_0003.jp2 │ │ └── dag-304-DAG_1_1_8_0029.jp2 ├── fragments │ ├── f1.png │ ├── f2.png │ ├── f6.png │ └── f7.png └── public-domain │ ├── LOC-urls.txt │ └── images │ ├── AGBell_Notebook.jpg │ ├── H96566k.jpg │ ├── README.md │ ├── clara-barton-life-of-my-childhood-p90.jpg │ └── mabel-h-bell-to-eliza-s-bell-sept-28-1879-1-1600.jpg ├── test_comparison.py ├── test_exceptions.py ├── test_exit_codes.py └── test_images.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-sphinx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.github/workflows/build-sphinx.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphics/all-results-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/all-results-example.png -------------------------------------------------------------------------------- /.graphics/azure-create-computer-vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/azure-create-computer-vision.png -------------------------------------------------------------------------------- /.graphics/azure-create-resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/azure-create-resource.png -------------------------------------------------------------------------------- /.graphics/azure-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/azure-dashboard.png -------------------------------------------------------------------------------- /.graphics/azure-get-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/azure-get-keys.png -------------------------------------------------------------------------------- /.graphics/azure-no-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/azure-no-resources.png -------------------------------------------------------------------------------- /.graphics/azure-start-free-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/azure-start-free-account.png -------------------------------------------------------------------------------- /.graphics/caltech-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/caltech-round.png -------------------------------------------------------------------------------- /.graphics/caltech-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/caltech-round.svg -------------------------------------------------------------------------------- /.graphics/clara-barton-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/clara-barton-page.jpg -------------------------------------------------------------------------------- /.graphics/clara-barton-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/clara-barton-page.png -------------------------------------------------------------------------------- /.graphics/example-tsv-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/example-tsv-file.png -------------------------------------------------------------------------------- /.graphics/glaser-example-google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/glaser-example-google.jpg -------------------------------------------------------------------------------- /.graphics/glaser-example-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/glaser-example-google.png -------------------------------------------------------------------------------- /.graphics/google-api-create-credentials-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-api-create-credentials-button.png -------------------------------------------------------------------------------- /.graphics/google-api-credentials-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-api-credentials-menu.png -------------------------------------------------------------------------------- /.graphics/google-bounding-box-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-bounding-box-example.png -------------------------------------------------------------------------------- /.graphics/google-cloud-add-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-cloud-add-api.png -------------------------------------------------------------------------------- /.graphics/google-cloud-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-cloud-new-project.png -------------------------------------------------------------------------------- /.graphics/google-cloud-platform-api-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-cloud-platform-api-option.png -------------------------------------------------------------------------------- /.graphics/google-cloud-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-cloud-platform.png -------------------------------------------------------------------------------- /.graphics/google-create-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-create-credentials.png -------------------------------------------------------------------------------- /.graphics/google-create-oauth-client-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-create-oauth-client-id.png -------------------------------------------------------------------------------- /.graphics/google-create-service-account-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-create-service-account-key.png -------------------------------------------------------------------------------- /.graphics/google-create-service-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-create-service-account.png -------------------------------------------------------------------------------- /.graphics/google-download-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-download-json.png -------------------------------------------------------------------------------- /.graphics/google-gcp-add-billing-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-gcp-add-billing-account.png -------------------------------------------------------------------------------- /.graphics/google-gcp-billing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-gcp-billing.png -------------------------------------------------------------------------------- /.graphics/google-gcp-create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-gcp-create-project.png -------------------------------------------------------------------------------- /.graphics/google-gcp-create-service-account-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-gcp-create-service-account-key.png -------------------------------------------------------------------------------- /.graphics/google-gcp-free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-gcp-free.png -------------------------------------------------------------------------------- /.graphics/google-gcp-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-gcp-new-project.png -------------------------------------------------------------------------------- /.graphics/google-gcp-no-billing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-gcp-no-billing.png -------------------------------------------------------------------------------- /.graphics/google-gcp-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-gcp-role.png -------------------------------------------------------------------------------- /.graphics/google-oauth-consent-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-oauth-consent-info.png -------------------------------------------------------------------------------- /.graphics/google-oauth-create-client-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-oauth-create-client-id.png -------------------------------------------------------------------------------- /.graphics/google-select-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-select-project.png -------------------------------------------------------------------------------- /.graphics/google-service-account-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/google-service-account-info.png -------------------------------------------------------------------------------- /.graphics/handprint-asciinema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/handprint-asciinema.png -------------------------------------------------------------------------------- /.graphics/handprint-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/handprint-demo.gif -------------------------------------------------------------------------------- /.graphics/handprint-preview-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/handprint-preview-image.png -------------------------------------------------------------------------------- /.graphics/linux-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/linux-32.png -------------------------------------------------------------------------------- /.graphics/mac-os-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/mac-os-32.png -------------------------------------------------------------------------------- /.graphics/noun_Hand_733265.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/noun_Hand_733265.png -------------------------------------------------------------------------------- /.graphics/noun_Hand_733265.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/noun_Hand_733265.svg -------------------------------------------------------------------------------- /.graphics/os-windows-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/os-windows-32.png -------------------------------------------------------------------------------- /.graphics/sample-annotated-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/.graphics/sample-annotated-image.png -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README-PAPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/README-PAPER.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /bin/handprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/bin/handprint -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/codemeta.json -------------------------------------------------------------------------------- /dev/icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/icon/README.md -------------------------------------------------------------------------------- /dev/icon/handprint-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/icon/handprint-icon-white.png -------------------------------------------------------------------------------- /dev/icon/handprint-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/icon/handprint-icon-white.svg -------------------------------------------------------------------------------- /dev/icon/handprint-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/icon/handprint-icon.svg -------------------------------------------------------------------------------- /dev/icon/noun_Hand_733265.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/icon/noun_Hand_733265.svg -------------------------------------------------------------------------------- /dev/scripts/create-pyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/scripts/create-pyz -------------------------------------------------------------------------------- /dev/services/google/Detect handwriting in images - Cloud Vision API - Google Cloud.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/google/Detect handwriting in images - Cloud Vision API - Google Cloud.pdf -------------------------------------------------------------------------------- /dev/services/google/Detect text in images - Cloud Vision API - Google Cloud.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/google/Detect text in images - Cloud Vision API - Google Cloud.pdf -------------------------------------------------------------------------------- /dev/services/google/Document Text Tutorial - Cloud Vision API - Google Cloud.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/google/Document Text Tutorial - Cloud Vision API - Google Cloud.pdf -------------------------------------------------------------------------------- /dev/services/google/Google-vision-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/google/Google-vision-notes.md -------------------------------------------------------------------------------- /dev/services/google/Package google.cloud.vision.v1p4beta1 - Cloud Vision API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/google/Package google.cloud.vision.v1p4beta1 - Cloud Vision API.pdf -------------------------------------------------------------------------------- /dev/services/google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/google/README.md -------------------------------------------------------------------------------- /dev/services/google/Types for Google Cloud Vision v1 API - google-cloud-vision documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/google/Types for Google Cloud Vision v1 API - google-cloud-vision documentation.pdf -------------------------------------------------------------------------------- /dev/services/google/google cloud vision api feature types 2018-10-25.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/google/google cloud vision api feature types 2018-10-25.pdf -------------------------------------------------------------------------------- /dev/services/google/google.cloud.vision_v1.types.image_annotator - google-cloud-vision documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/google/google.cloud.vision_v1.types.image_annotator - google-cloud-vision documentation.pdf -------------------------------------------------------------------------------- /dev/services/sample-output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/README.md -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-all.png -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-rekognition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-rekognition.json -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-rekognition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-rekognition.png -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-rekognition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-rekognition.txt -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-textract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-textract.json -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-textract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-textract.png -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-textract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-amazon-textract.txt -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-google.json -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-google.png -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-google.txt -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-microsoft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-microsoft.json -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-microsoft.png -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-microsoft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.handprint-microsoft.txt -------------------------------------------------------------------------------- /dev/services/sample-output/dag-304-DAG_1_1_8_0029.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/dev/services/sample-output/dag-304-DAG_1_1_8_0029.jp2 -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/_static/media/all-results-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/_static/media/all-results-example.png -------------------------------------------------------------------------------- /docs/_static/media/clara-barton-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/_static/media/clara-barton-page.jpg -------------------------------------------------------------------------------- /docs/_static/media/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/_static/media/favicon.ico -------------------------------------------------------------------------------- /docs/_static/media/glaser-example-google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/_static/media/glaser-example-google.jpg -------------------------------------------------------------------------------- /docs/_static/media/handprint-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/_static/media/handprint-icon-white.png -------------------------------------------------------------------------------- /docs/_static/media/handprint-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/_static/media/handprint-icon-white.svg -------------------------------------------------------------------------------- /docs/_static/media/handprint-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/_static/media/handprint-icon.svg -------------------------------------------------------------------------------- /docs/_static/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/_static/versions.json -------------------------------------------------------------------------------- /docs/advanced-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/advanced-usage.md -------------------------------------------------------------------------------- /docs/basic-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/basic-usage.md -------------------------------------------------------------------------------- /docs/colophon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/colophon.md -------------------------------------------------------------------------------- /docs/command-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/command-summary.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/docs/known-issues.md -------------------------------------------------------------------------------- /handprint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/__init__.py -------------------------------------------------------------------------------- /handprint/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/__main__.py -------------------------------------------------------------------------------- /handprint/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/comparison.py -------------------------------------------------------------------------------- /handprint/credentials/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/credentials/__init__.py -------------------------------------------------------------------------------- /handprint/credentials/amazon_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/credentials/amazon_auth.py -------------------------------------------------------------------------------- /handprint/credentials/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/credentials/base.py -------------------------------------------------------------------------------- /handprint/credentials/credentials_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/credentials/credentials_files.py -------------------------------------------------------------------------------- /handprint/credentials/google_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/credentials/google_auth.py -------------------------------------------------------------------------------- /handprint/credentials/microsoft_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/credentials/microsoft_auth.py -------------------------------------------------------------------------------- /handprint/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/exceptions.py -------------------------------------------------------------------------------- /handprint/exit_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/exit_codes.py -------------------------------------------------------------------------------- /handprint/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/images.py -------------------------------------------------------------------------------- /handprint/main_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/main_body.py -------------------------------------------------------------------------------- /handprint/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/manager.py -------------------------------------------------------------------------------- /handprint/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/services/__init__.py -------------------------------------------------------------------------------- /handprint/services/amazon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/services/amazon.py -------------------------------------------------------------------------------- /handprint/services/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/services/base.py -------------------------------------------------------------------------------- /handprint/services/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/services/google.py -------------------------------------------------------------------------------- /handprint/services/microsoft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/handprint/services/microsoft.py -------------------------------------------------------------------------------- /pubs/joss/.gitignore: -------------------------------------------------------------------------------- 1 | auto 2 | whedon 3 | paper.pdf 4 | -------------------------------------------------------------------------------- /pubs/joss/H96566k.handprint-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/pubs/joss/H96566k.handprint-all.png -------------------------------------------------------------------------------- /pubs/joss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/pubs/joss/Makefile -------------------------------------------------------------------------------- /pubs/joss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/pubs/joss/README.md -------------------------------------------------------------------------------- /pubs/joss/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/pubs/joss/notes.txt -------------------------------------------------------------------------------- /pubs/joss/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/pubs/joss/paper.bib -------------------------------------------------------------------------------- /pubs/joss/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/pubs/joss/paper.md -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/README.md -------------------------------------------------------------------------------- /tests/data/bad-images/corrupted-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/bad-images/corrupted-image.png -------------------------------------------------------------------------------- /tests/data/caltech-archives/caltech-archives-urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/caltech-archives/caltech-archives-urls.txt -------------------------------------------------------------------------------- /tests/data/caltech-archives/glaser/DAG_5_1_6 1952-1957 Notebook VI p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/caltech-archives/glaser/DAG_5_1_6 1952-1957 Notebook VI p2.jpg -------------------------------------------------------------------------------- /tests/data/caltech-archives/glaser/DAG_5_2_1 1950-1953 notebook VIII p7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/caltech-archives/glaser/DAG_5_2_1 1950-1953 notebook VIII p7.jpg -------------------------------------------------------------------------------- /tests/data/caltech-archives/glaser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/caltech-archives/glaser/README.md -------------------------------------------------------------------------------- /tests/data/caltech-archives/glaser/dag-285-DAG_1_1_8_0003.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/caltech-archives/glaser/dag-285-DAG_1_1_8_0003.jp2 -------------------------------------------------------------------------------- /tests/data/caltech-archives/glaser/dag-304-DAG_1_1_8_0029.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/caltech-archives/glaser/dag-304-DAG_1_1_8_0029.jp2 -------------------------------------------------------------------------------- /tests/data/fragments/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/fragments/f1.png -------------------------------------------------------------------------------- /tests/data/fragments/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/fragments/f2.png -------------------------------------------------------------------------------- /tests/data/fragments/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/fragments/f6.png -------------------------------------------------------------------------------- /tests/data/fragments/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/fragments/f7.png -------------------------------------------------------------------------------- /tests/data/public-domain/LOC-urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/public-domain/LOC-urls.txt -------------------------------------------------------------------------------- /tests/data/public-domain/images/AGBell_Notebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/public-domain/images/AGBell_Notebook.jpg -------------------------------------------------------------------------------- /tests/data/public-domain/images/H96566k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/public-domain/images/H96566k.jpg -------------------------------------------------------------------------------- /tests/data/public-domain/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/public-domain/images/README.md -------------------------------------------------------------------------------- /tests/data/public-domain/images/clara-barton-life-of-my-childhood-p90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/public-domain/images/clara-barton-life-of-my-childhood-p90.jpg -------------------------------------------------------------------------------- /tests/data/public-domain/images/mabel-h-bell-to-eliza-s-bell-sept-28-1879-1-1600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/data/public-domain/images/mabel-h-bell-to-eliza-s-bell-sept-28-1879-1-1600.jpg -------------------------------------------------------------------------------- /tests/test_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/test_comparison.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_exit_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/test_exit_codes.py -------------------------------------------------------------------------------- /tests/test_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caltechlibrary/handprint/HEAD/tests/test_images.py --------------------------------------------------------------------------------