-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
33 lines (23 loc) · 820 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import os
import flask
from flask import request, jsonify
from google.cloud import translate_v2 as translate
from flask_cors import CORS
from dotenv import load_dotenv
load_dotenv()
application_credentials = "GOOGLE_APPLICATION_CREDENTIALS"
json_path = os.environ[application_credentials]
translate_client = translate.Client.from_service_account_json(json_path)
target = "en"
app = flask.Flask(__name__)
cors = CORS(app)
@app.route('/', methods=['POST'])
def translate_text():
terms = request.json.get('terms')
if len(terms) == 0:
result = {"error": "bad request, terms not found"}
else:
result = translate_client.translate(terms, target_language=target)
return jsonify(result)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000) # hardcoded as to avoid confusion