Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asottile/tessdata
pip installable versions of tesseract-ocr data
https://github.com/asottile/tessdata
Last synced: 11 days ago
JSON representation
pip installable versions of tesseract-ocr data
- Host: GitHub
- URL: https://github.com/asottile/tessdata
- Owner: asottile
- License: mit
- Created: 2023-10-20T21:07:12.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-22T00:29:36.000Z (22 days ago)
- Last Synced: 2024-10-24T12:26:49.233Z (20 days ago)
- Language: Python
- Size: 63.5 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![build status](https://github.com/asottile/tessdata/actions/workflows/main.yml/badge.svg)](https://github.com/asottile/tessdata/actions/workflows/main.yml)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/asottile/tessdata/main.svg)](https://results.pre-commit.ci/latest/github/asottile/tessdata/main)tessdata
========`pip` installable versions of [tesseract-ocr data]
[tesseract-ocr data]: https://github.com/tesseract-ocr
## usage
usually you'll want to pick a particular package for installation.
currently the following are provided (send a PR to add more!):
- tessdata.deu
- tessdata.eng
- tessdata.jpn
- tessdata.fast-deu
- tessdata.fast-eng
- tessdata.fast-jpnthese will install to `{prefix}/share/tessdata` -- you can access this
directory path using the `tessdata` api:```python
import tessdataprint(tessdata.data_path()) # /path/to/venv/share/tessdata
```