|
@@ -7,6 +7,7 @@ from os import environ, urandom
|
|
|
|
|
|
from flask import Flask, jsonify, render_template, request
|
|
|
|
|
|
+
|
|
|
from scriptshifter.tables import list_tables, load_table
|
|
|
from scriptshifter.trans import transliterate
|
|
|
|
|
@@ -31,6 +32,14 @@ def create_app():
|
|
|
app = create_app()
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
@app.route("/", methods=["GET"])
|
|
|
def index():
|
|
|
return render_template("index.html", languages=list_tables())
|