Skip to content

Tags: Nithishk29/pytesseract

Tags

v0.3.10

Toggle v0.3.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.3.10

v0.3.9

Toggle v0.3.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.3.9

Resoleves madmaze#316

v0.3.8

Toggle v0.3.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.3.8

v0.3.7

Toggle v0.3.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add pre-commit.ci badge

v0.3.6

Toggle v0.3.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix variable typo in test case

v.0.3.6

Toggle v.0.3.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.3.6

v0.3.5

Toggle v0.3.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.3.5

v0.3.4

Toggle v0.3.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.3.4

v0.3.3

Toggle v0.3.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix error with temp file read access on Windows

Attempting to access the temp file after creation on Windows will trigger Permission Error.
The fix is to set the the delete flag to False (which is a quick and dirty hack),
which allows Python to 'release' the file handle, resulting in successful subsequent read access under Windows.

Docs reference: https://docs.python.org/3/library/tempfile.html#tempfile.NamedTemporaryFile
`Whether the name can be used to open the file a second time, while the named temporary file is still open,
varies across platforms (it can be so used on Unix; it cannot on Windows NT or later)`

Fixes madmaze#255

v0.3.2

Toggle v0.3.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.3.2

Fix issue of not cleaning up the temporary files.