v0.2.0
This version features the processing of documents in bytes as follows:
with open('PATH_TO_YOUR_DOCUMENT', 'rb') as f:
document_bytes = f.read()
parser.parse(document_bytes, document_name='YOUR_DOCUMENT_NAME', document_type='pdf')This version features the processing of documents in bytes as follows:
with open('PATH_TO_YOUR_DOCUMENT', 'rb') as f:
document_bytes = f.read()
parser.parse(document_bytes, document_name='YOUR_DOCUMENT_NAME', document_type='pdf')