Skip to content

AM-Ivanov/Receipt_Validator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Preconditions:
- Installed following modules by pip: pip install pdfplumber flask pyzbar numpy Pillow pdf2image
- Installed latest poppler: https:/oschwartz10612/poppler-windows/releases/
- Written path to poppler/Library/bin in barcode_validator.py > def convertation_to_img > argument poppler_path

Some description of the API method:
- Route: /validate_receipt
- Method: POST
- Body:
    Content Type: multipart/form-data
    Parameter name: f
    Data: pdf file
- Example: 
curl --location 'http://<ip or domain name>/validate_receipt' \
--form 'f=@"<path to file>"'

What can the method do:
- Checking that request contains right content (including file format)
- Checking texts in document (including header text, number of document fields, their naming and order)
- Checking barcodes (including their count, their type and positions in document)

If all tests are passed method returns following response:
Checking header content -- passed
Checking the list of fields -- passed
Checking of barcodes -- passed

Else returns list of errors.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages