This commit is contained in:
Renee Noble 2022-09-13 13:13:15 +10:00 коммит произвёл GitHub
Родитель 9a1076ea88
Коммит 49c685a4dd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -128,6 +128,11 @@ To get started we'll need to make a form that collects the text to be translated
from flask import Flask, redirect, url_for, request, render_template, session
app = Flask(__name__)
@app.route('/', methods=['GET'])
def index():
return render_template('index.html')
```
3. Add this handy code at the bottom or your file, which will help run your code.