Amazon Textract Helper tools for pretty printing
Project description
Textract-PrettyPrinter
Provides functions to format the output received from Textract in more easily consumable formats incl. CSV or Markdown. amazon-textract-prettyprinter
Install
> python -m pip install amazon-textract-prettyprinter
Make sure your environment is setup with AWS credentials through configuration files or environment variables or an attached role. (https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html)
Samples
Get FORMS and TABLES as CSV
from textractcaller.t_call import call_textract, Textract_Features
from textractprettyprinter.t_pretty_print import Pretty_Print_Table_Format, Textract_Pretty_Print, get_string
textract_json = call_textract(input_document=input_document, features=[Textract_Features.FORMS, Textract_Features.TABLES])
print(get_string(textract_json=textract_json,
table_format=Pretty_Print_Table_Format.csv,
output_type=[Textract_Pretty_Print.TABLES, Textract_Pretty_Print.FORMS]))
Get string for TABLES using the get_string method
from textractcaller.t_call import call_textract, Textract_Features
from textractprettyprinter.t_pretty_print import Textract_Pretty_Print, get_string
textract_json = call_textract(input_document=input_document, features=[Textract_Features.TABLES])
get_string(textract_json=textract_json, output_type=Textract_Pretty_Print.TABLES)
Print out tables in LaTeX format
from textractcaller.t_call import call_textract, Textract_Features
from textractprettyprinter.t_pretty_print import Textract_Pretty_Print, get_string
textract_json = call_textract(input_document=input_document, features=[Textract_Features.FORMS, Textract_Features.TABLES])
get_tables_string(textract_json=textract_json, table_format=Pretty_Print_Table_Format.latex)
Get linearized text from LAYOUT using get_text_from_layout_json method
Generates a dictionary of linearized text from the Textract JSON response with LAYOUT, and optionally writes linearized plain text files to local file system or Amazon S3. It can take either per page JSON from AnalyzeDocument API, or a single combined JSON with all the pages created from StartDocumentAnalysis output JSONs.
from textractcaller.t_call import call_textract, Textract_Features
from textractprettyprinter.t_pretty_print import get_text_from_layout_json
textract_json = call_textract(input_document=input_document, features=[Textract_Features.LAYOUT, Textract_Features.TABLES])
layout = get_text_from_layout_json(textract_json=textract_json)
full_text = layout[1]
print(full_text)
In addition to textract_json
, the get_text_from_layout_json
function can take the following additional parameters
table_format
(str, optional): Format of tables within the document. Supports all python-tabulate table formats. See tabulate for supported table formats. Defaults togrid
.exclude_figure_text
(bool, optional): If set to True, excludes text extracted from figures in the document. Defaults toFalse
.exclude_page_header
(bool, optional): If set to True, excludes the page header from the linearized text. Defaults toFalse
.exclude_page_footer
(bool, optional): If set to True, excludes the page footer from the linearized text. Defaults toFalse
.exclude_page_number
(bool, optional): If set to True, excludes the page number from the linearized text. Defaults toFalse
.skip_table
(bool, optional): If set to True, skips including the table in the linearized text. Defaults toFalse
.save_txt_path
(str, optional): Path to save the output linearized text to files. Either a local file system path or Amazon S3 path can be specified ins3://bucket_name/prefix/
format. Files will be saved with<page_number>.txt
naming convention.generate_markdown
(bool, optional): If set toTrue
, generates markdown formatted linearized text. Defaults toFalse
.
Generate the layout.csv similar to the Textract Web Console
Customers asked for the abilility to generate the layout.csv format, which can be downloaded when testing documents in the AWS Web Console. The method ``get_layout_csv_from_trp2```` generates for each page a list of the entries:
'Page number,'Layout,'Text,'Reading Order,'Confidence score
- Page number: starting at 1, incrementing for eac page
- Layout: the BlockType + a number indicating the sequence for this BlockType starting at 1 and for LAYOUT_LIST elements the string: "- part of LAYOUT_LIST (index)" is added
- Text: except for LAYOUT_LIST and LAYOUT_FIGURE the underlying text
- Reading Order: increasing int for each LAYOUT element starting with 0
- Confidence score: confidence in this being a LAYOUT element
this can be used to generate a CSV (or another format). Below a sample how to generate a CSV.
# taken from the test
# generates the CSV in memory
from textractprettyprinter import get_layout_csv_from_trp2
with open(<some_test_file>) as input_fp:
trp2_doc: TDocument = TDocumentSchema().load(json.load(input_fp))
layout_csv = get_layout_csv_from_trp2(trp2_doc)
csv_output = io.StringIO()
csv_writer = csv.writer(csv_output, delimiter=",", quotechar='"', quoting=csv.QUOTE_MINIMAL)
for page in layout_csv:
csv_writer.writerows(page)
print(csv_output)
Sample output
Page number | Layout | Text | Reading Order | BlockType | Confidence score |
---|---|---|---|---|---|
1 | LAYOUT_SECTION_HEADER 1 | Amazing Headline!... | 0 | LAYOUT_SECTION_HEADER | 81.25 |
1 | LAYOUT_TEXT 1 | Lorem ipsum dolor sit amet, co... | 1 | LAYOUT_TEXT | 99.755859375 |
1 | LAYOUT_SECTION_HEADER 2 | Unbelievable stuff... | 2 | LAYOUT_SECTION_HEADER | 90.478515625 |
1 | LAYOUT_TEXT 2 | Ut ultrices felis vel mi susci... | 3 | LAYOUT_TEXT | 98.486328125 |
1 | LAYOUT_LIST 1 | 4 | LAYOUT_LIST | 97.16796875 | |
1 | LAYOUT_TEXT 3 - part of LAYOUT_LIST 1 | Priority list item 1... | 5 | LAYOUT_TEXT | 97.8515625 |
1 | LAYOUT_TEXT 4 - part of LAYOUT_LIST 1 | Priority list item 2... | 6 | LAYOUT_TEXT | 98.095703125 |
1 | LAYOUT_TEXT 5 - part of LAYOUT_LIST 1 | Another list item 3... | 7 | LAYOUT_TEXT | 98.095703125 |
1 | LAYOUT_TEXT 6 - part of LAYOUT_LIST 1 | And a total optional list item... | 8 | LAYOUT_TEXT | 98.73046875 |
1 | LAYOUT_LIST 2 | 9 | LAYOUT_LIST | 69.53125 | |
1 | LAYOUT_TEXT 7 - part of LAYOUT_LIST 2 | 1. But we... | 10 | LAYOUT_TEXT | 95.751953125 |
1 | LAYOUT_TEXT 8 - part of LAYOUT_LIST 2 | 2. can also... | 11 | LAYOUT_TEXT | 96.923828125 |
1 | LAYOUT_TEXT 9 - part of LAYOUT_LIST 2 | 3. do numbered... | 12 | LAYOUT_TEXT | 97.36328125 |
1 | LAYOUT_TEXT 10 - part of LAYOUT_LIST 2 | 4. lists... | 13 | LAYOUT_TEXT | 96.6796875 |
1 | LAYOUT_TEXT 11 | congue ac. Phasellus mollis co... | 14 | LAYOUT_TEXT | 96.044921875 |
1 | LAYOUT_TEXT 12 | Quisque a elementum diam. Null... | 15 | LAYOUT_TEXT | 96.484375 |
1 | LAYOUT_TEXT 13 | Table Caption 1... | 16 | LAYOUT_TEXT | 86.865234375 |
1 | LAYOUT_TABLE 1 | Date Description Amount 12-12-... | 17 | LAYOUT_TABLE | 96.435546875 |
1 | LAYOUT_TEXT 14 | Quisque dapibus varius ipsum, ... | 18 | LAYOUT_TEXT | 93.06640625 |
1 | LAYOUT_FIGURE 1 | 19 | LAYOUT_FIGURE | 94.3359375 | |
1 | LAYOUT_TEXT 15 | Figure Caption 1... | 20 | LAYOUT_TEXT | 63.18359375 |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file amazon-textract-prettyprinter-0.1.10.tar.gz
.
File metadata
- Download URL: amazon-textract-prettyprinter-0.1.10.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b45e224be8c6aaf85a3a2e3f63bbc1bafe9f04cc1be14fa785ed009bb72ff291 |
|
MD5 | ed23c3e00f7f1f1ae99a0709893405a8 |
|
BLAKE2b-256 | a2cbed669e79677dd7eccff06d293ba0d914659817d43ab742df4ab3a814d794 |
File details
Details for the file amazon_textract_prettyprinter-0.1.10-py2.py3-none-any.whl
.
File metadata
- Download URL: amazon_textract_prettyprinter-0.1.10-py2.py3-none-any.whl
- Upload date:
- Size: 20.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c60c0e8ba10d1f3775dfbb12e6e00e700e8283591513715b641bfb98c8f0ddf |
|
MD5 | d0d307507118f3dcea311d240e2c5b6f |
|
BLAKE2b-256 | 64aa9c30283b37177902f2636a496cc80c8221a60315e176d127f23c606b911e |