├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── setup.py ├── src └── hocr_parser │ ├── __init__.py │ └── parser.py └── tests ├── conftest.py └── hocr ├── clip_image0029.jpg ├── output.hocr ├── output.txt └── test_hocr.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | pytest -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/setup.py -------------------------------------------------------------------------------- /src/hocr_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/src/hocr_parser/__init__.py -------------------------------------------------------------------------------- /src/hocr_parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/src/hocr_parser/parser.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/hocr/clip_image0029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/tests/hocr/clip_image0029.jpg -------------------------------------------------------------------------------- /tests/hocr/output.hocr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/tests/hocr/output.hocr -------------------------------------------------------------------------------- /tests/hocr/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/tests/hocr/output.txt -------------------------------------------------------------------------------- /tests/hocr/test_hocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athento/hocr-parser/HEAD/tests/hocr/test_hocr.py --------------------------------------------------------------------------------