Last updated:
0 purchases
aquaparser 0.2.1
Aqua-parser
Description
Aqua-parser is a package for extracting data from structured reports in pdf format.
How to use
First of all, you need to install the package:
pip install aqua-parser
Next, the package must be imported into your project:
import aquaparser
To extract the data, you just need to pass the file to the function:
measurement = aquaparser.parse('document.pdf')
The function will return you the dataclass "Measurement" object:
@dataclass
class Measurement:
title: MeasurementTitle
toc: list[MeasurementTOC]
@dataclass
class MeasurementTitle:
measurement_object: str
project: str
report_date: datetime
responsible_person: str
@dataclass
class MeasurementTOC:
smd: str
status: Optional[str]
value_description: Optional[str]
single_value: Optional[str]
trial_object: Optional[str]
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.