Library of Congress script transliterator.

scossu c8e1ce0d6d Implement normalize logic and block for classical Greek. преди 1 година
.github 8f6a9de5c8 Pull submodules. преди 1 година
doc a73f904729 Add warnings to context object. преди 1 година
ext ef159ddf98 Update Docker image to Debian. преди 1 година
legacy c90c982226 Update Transliterator config files for Greek (from Randy). преди 1 година
scriptshifter c8e1ce0d6d Implement normalize logic and block for classical Greek. преди 1 година
tests 1b45c9b105 WIP Greek. преди 1 година
.dockerignore ef159ddf98 Update Docker image to Debian. преди 1 година
.gitignore ef159ddf98 Update Docker image to Debian. преди 1 година
.gitmodules 0eb119866c Arabic via CAMeL tools (#88) преди 1 година
Dockerfile 2d64c48b9a Link large model; fix Docker image. (#90) преди 1 година
LICENSE 20cb85dad1 Initial commit преди 2 години
NOTES.md 58cd0be0fd Rebrand to ScriptShifter. преди 2 години
README.md 6413dd586c Hebrew (#81) преди 1 година
TODO.md dae54334a7 Add Arabic transliteration via 3d party. преди 2 години
entrypoint.sh 2d64c48b9a Link large model; fix Docker image. (#90) преди 1 година
example.env 6413dd586c Hebrew (#81) преди 1 година
requirements.txt 2d64c48b9a Link large model; fix Docker image. (#90) преди 1 година
uwsgi.ini acf4bf7b3d Flask and Docker boilerplate. преди 2 години
wsgi.py 58cd0be0fd Rebrand to ScriptShifter. преди 2 години

README.md

ScriptShifter

REST API service to convert non-Latin scripts to Latin, and vice versa.

Environment variables

The provided example.env can be renamed to .env in your deployment and/or moved to a location that is not under version control, and adjusted to fit the environment. The file will be parsed directly by the application if present, or it can be pre-loaded in a Docker environment.

Currently, the following environment variables are defined:

  • TXL_LOGLEVEL: Application log level. Defaults to WARN.
  • TXL_FLASK_SECRET: Flask secret key.
  • TXL_DICTA_EP: Endpoint for the Dicta Hebrew transliteration service. This is mandatory for using the Hebrew module.

Local development server

For local development, it is easiest to run Flask without the WSGI wrapper, possibly in a virtual environment:

# python -m venv /path/to/venv
# source /path/to/venv/bin/activate
# pip install -r requirements.txt
# flask run

It is advised to set FLASK_DEBUG=true to reload the web app on code changes and print detailed stack traces when exceptions are raised. Note that changes to any .yml file do NOT trigger a reload of Flask.

Alternatively, the transliteration interface can be accessed directly from Python:

from scriptshifter.trans import transliterate

transliterate("some text", "some language")

Run on Docker

Build container in current dir:

docker build -t scriptshifter:latest .

Start container:

docker run --env-file .env -p 8000:8000 scriptshifter:latest

For running in development mode, add -e FLASK_ENV=development to the options.

Web UI

/ renders a simple HTML form to test the transliteration service.

Contributing

See the contributing guide.

Further documentation

See the doc folder for additional documentation.