Metadata-Version: 2.4
Name: django-ocr_translate
Version: 0.7.4
Summary: Django app for OCR and translation
Keywords: django,ocr,translation
Author: Davide Grassano
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Natural Language :: English
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Intended Audience :: End Users/Desktop
License-File: LICENSE.txt
Requires-Dist: rich
Requires-Dist: wheel~=0.45.1
Requires-Dist: setuptools~=70.2.0
Requires-Dist: numpy~=2.2.6
Requires-Dist: Django~=5.2.4
Requires-Dist: django-cors-headers~=4.7.0
Requires-Dist: Pillow~=11.0.0
Requires-Dist: opencv-python-headless~=4.12.0.88
Requires-Dist: docutils~=0.21.2 ; extra == "docs"
Requires-Dist: sphinx~=8.2.3 ; extra == "docs"
Requires-Dist: sphinx_design~=0.6.1 ; extra == "docs"
Requires-Dist: sphinx-rtd-theme~=3.0.2 ; extra == "docs"
Requires-Dist: sphinx-rtd-dark-mode~=1.3.0 ; extra == "docs"
Requires-Dist: sphinxcontrib-openapi~=0.8.4 ; extra == "docs"
Requires-Dist: pymysql ; extra == "mysql"
Requires-Dist: psycopg[binary] ; extra == "postgres"
Requires-Dist: pre-commit~=4.2.0 ; extra == "pre-commit"
Requires-Dist: pylint~=3.3.7 ; extra == "pre-commit"
Requires-Dist: pylint-pytest~=1.1.8 ; extra == "pre-commit"
Requires-Dist: pylint-django~=2.6.1 ; extra == "pre-commit"
Requires-Dist: flit ; extra == "release"
Requires-Dist: pytest~=8.2.0 ; extra == "tests"
Requires-Dist: pytest-cov~=6.2.1 ; extra == "tests"
Requires-Dist: pytest-django~=4.11.1 ; extra == "tests"
Requires-Dist: pytest-regressions~=2.8.1 ; extra == "tests"
Project-URL: Source, https://github.com/crivella/ocr_translate
Provides-Extra: docs
Provides-Extra: mysql
Provides-Extra: postgres
Provides-Extra: pre-commit
Provides-Extra: release
Provides-Extra: tests

<div align="center">
  <p align="center">
	<a href="https://pypi.org/project/django-ocr_translate/"><img src="https://img.shields.io/pypi/dm/django-ocr_translate?style=flat-square" alt="pypi"/></a>
	<a href="https://pypi.org/project/django-ocr_translate/"><img src="https://img.shields.io/pypi/v/django-ocr_translate?style=flat-square" /></a>
	<a href="https://pypi.org/project/django-ocr_translate/"><img src="https://img.shields.io/github/downloads/Crivella/ocr_translate/total.svg?style=flat-square" /></a>
  <br />
	<a href="https://crivella.github.io/ocr_translate/"><img src="https://img.shields.io/badge/GitHub%20Pages-222222?style=for-the-badge&logo=GitHub%20Pages&logoColor=white" alt="pypi"/></a>
  </p>
</div>

# OCR_translate

This is a Django app for creating back-end server aimed at performing OCR and translation of images received via a POST request.

The OCR and translation is performed using freely available machine learning models and packages (see below for what is currently implemented).

The server is designed to be used together with [this browser extension](https://github.com/Crivella/ocr_extension), acting as a front-end providing the images and controlling the languages, models and plugins being used.

For more information, please consult the **[Full Documentation](https://crivella.github.io/ocr_translate/)**

## Running the server

See the [documentation](https://crivella.github.io/ocr_translate/user/index.html#running-the-server) for more information.

**TLDR:** If you are on windows you will need to:

- install [python](https://www.python.org/downloads/windows/) (`3.10 <= SUPPORTED_VERSIONS <= 3.13`) with the check on `Add python.exe to PATH`
- download>unzip the [release file](/../../releases/latest/download/run_server.zip)
- run the `run-user.[bat/sh]` file (bat for windows, sh for linux)

### Why do I need to install python

Before version `v0.6.0` the server was distributed by including all possible plugins and their dependencies.\
This made the distribution file (both the github release and docker image) quite large and the release process cumbersome.\
Furthermore, not every user might be interested in every plugin and might end up downloading GB of files that they will never use.

For this reason a [plugin_manager](ocr_translate/plugin_manager.py) has been added to the project that will download/install the plugins and their dependencies on demand.\
Installing python packages requires `pip` to be available (which is included with python on the windows installer).\
Unfortunately I have not found a way to include pip reliably in the frozen install produced for the release file.\
The alternative would've been to add a 2nd installer just to get `pip` before running the server, but why reinvent the wheel.

The check on `Add python.exe to PATH` is needed so that `pip` can be run without having to make any assumption on the installation path.

Also since I am now asking people to install python, I decided to go all the way and use an approach similar to what [automatic1111's webui.bat](https://github.com/AUTOMATIC1111/stable-diffusion-webui/blob/master/webui.bat) does for stable diffusion.\
This batch script will create/reuse a virtual environment in a folder `venv` in the same directory as the script and install the required packages in it.

## Upgrading from a previous version

- Download the desired release files.
- Stop the server if it is running
- Run the new server files. Make sure to use the same environment variables in `run-user.[bat/sh]` as before if you had set any
- Since `v0.6.0` you could also replace the existing server files with the new ones, or point the new ones to reuse the same virtual environment (if you really want to save 100~200MB)

Since `v0.6.1` you can also use the `OCT_VERSION` and `OCT_AUTOUPDATE` environment variables to have the server update itself automatically to the `latest` or a specific version.
It is still recommended to download the new release files as improvements/bug-fixes/new-features can also be added to the launch and settings scripts.

### What happens to my installation and database in an upgrade

- The database will be automatically migrated to the new version if needed. Any existing data will be preserved.
- The plugins and their dependencies will be left unchanged or upgraded as needed.
- Models will be reused

**NOTE**: Attempting to reuse the plugins if switching between different python versions will likely cause problems.
If you plan to use different python versions, it is recommended to point to a different `OCT_BASE_DIR` or move/delete your current plugin installations.

### Can I downgrade to a previous version

It depends... downgrading to a previous version is in general not supported.
In particular if there have been changes to the database schema, downgrading them is not automated in this project.
In that case, you would need to either start from a new database or use a backed up from the target version (or a previous one as upgrading is supported).
Check the [labeled PRs](https://github.com/Crivella/ocr_translate/pulls?q=is%3Apr+label%3Adatabase_migrations) for which releases  contains database migrations (label might be missing before `v0.4.0`).

## Contributing

- Suggestions/Ideas are always welcome and can be posted as [discussions](https://github.com/Crivella/ocr_translate/discussions).\
  You can also just propose a new model to be tested/added to the ones available by default.
- Bugs can be reported as [issues](https://github.com/Crivella/ocr_translate/issues)
- Code contributions as [pull requests](https://github.com/Crivella/ocr_translate/pulls).
  Check [the documentation](https://crivella.github.io/ocr_translate/contrib/index.html) for more information.

## Plugins

The server is designed to only offer the basic functionalities, while the models that can be used and how they are used are defined by plugins.

See the documentation for a [list of available plugins](https://crivella.github.io/ocr_translate/plugins/index.html)

### Notes

- When switching the server between CPU/CUDA mode for the first time, run the installation of the plugins again to make sure the scope-specific dependencies are installed.
- Different plugins will make different types of models available:
  - `BOX Model`: EasyOcr, PaddleOCR
  - `OCR Model`: PaddleOCR, Tesseract, HuggingFace
  - `Translation Model`: HuggingFace, GoogleTranslate, Ollama

- Also some plugins might requires additional tools to be installed on the server and possibly some environment variable configured.
  Refer to the [plugin documentation](https://crivella.github.io/ocr_translate/plugins/index.html) and the information the the tooltip shown by hovering the question mark next to the plugin name.

### Troubleshooting

- Related to https://github.com/Crivella/ocr_extension/issues/5 If a plugins fails to install, either via an error message you see in the server window or by not having the models available, try the following:
  - Uninstall the plugin in question by deselecting it in the popup menu and clicking submit.
  - Nuke the entire plugin installation by:
    - Stopping the server
    - Delete the `plugins` directory and the `plugins.json` file under `$OCT_BASE_DIR` (default to `$HOME/.ocr_translate` on Linux and `%userprofile%\.ocr_translate` on Windows)
    - Restart the server

If all else fails, please open an issue on the [backend server](https://github.com/Crivella/ocr_translate) possibly attaching the DEBUG log of the server (run the server by setting the environment variable `DJANGO_LOG_LEVEL=DEBUG` in your `run-user.[sh/bat]` script).

## Possible problems

- [Issue 25](/../../issues/25) Using uBlock origin (or possibly other extension capable of blocking content) could stop the extension from sending requests to the server. This can be recognized if the popup for setting the language and models works fine but then the translations fails without producing any new log in the server windows. (WIP long term fix in the extension)

- [Issue 27](/../../issues/27) Having non latin characters in the model's path can cause HuggingFace `transformers` to fail loading them

