feat: add config based annotation converter by galdawave · Pull Request #72 · googleapis/python-documentai-toolbox · GitHub
Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
23cabd5
feat: converters for external document annotations
galdawave Feb 13, 2023
2090a1a
added tests for converter
galdawave Feb 27, 2023
541e45f
added converter tests
galdawave Mar 1, 2023
c1c3058
added more tests to increase coverage
galdawave Mar 2, 2023
d19bc17
Merge branch 'main' into converter-toolkit
galdawave Mar 2, 2023
ae1c97b
combined converter files
galdawave Mar 2, 2023
8af22e5
lint and test fixes
galdawave Mar 2, 2023
2dcd35a
lint and docs fixes
galdawave Mar 2, 2023
795bf83
addressed comments
galdawave Mar 6, 2023
d2c09eb
lint fix
galdawave Mar 6, 2023
b181023
Merge branch 'main' into converter-toolkit
galdawave Mar 6, 2023
15e2fa4
Update google/cloud/documentai_toolbox/converters/config/converter_he…
galdawave Mar 6, 2023
c283020
updated comments and function naming
galdawave Mar 7, 2023
4bc89ef
fixed failing tests
galdawave Mar 8, 2023
c9dc224
added samples and lint fixes
galdawave Mar 9, 2023
5c249ea
fixed region tags
galdawave Mar 9, 2023
adc07cf
fix region tag
galdawave Mar 9, 2023
472f199
Update samples/snippets/convert_document_from_azure_sample.py
galdawave Mar 9, 2023
64e8c14
Update samples/snippets/convert_document_from_azure_sample.py
galdawave Mar 9, 2023
fdf7da0
lint fixes
galdawave Mar 9, 2023
57aa831
Merge branch 'converter-toolkit' of https://github.com/googleapis/pyt…
galdawave Mar 9, 2023
657cbc8
Merge branch 'main' into converter-toolkit
holtskinner Mar 9, 2023
bb730c3
added more comments
galdawave Mar 9, 2023
0054b79
Merge branch 'converter-toolkit' of https://github.com/googleapis/pyt…
galdawave Mar 9, 2023
8840303
Update samples/snippets/convert_document_from_azure_sample.py
galdawave Mar 9, 2023
1bd38e2
Update samples/snippets/convert_document_from_azure_sample.py
galdawave Mar 9, 2023
74e9711
Update samples/snippets/convert_document_from_azure_sample.py
galdawave Mar 9, 2023
8af1048
changed name of converter sample per Holts comment
galdawave Mar 9, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions google/cloud/documentai_toolbox/__init__.py
15 changes: 15 additions & 0 deletions google/cloud/documentai_toolbox/converters/config/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
296 changes: 296 additions & 0 deletions google/cloud/documentai_toolbox/converters/config/bbox_conversion.py
Loading