Answer the question
In order to leave comments, you need to log in
How to make sure that there is a correct encoding (Python, Flask)?
Hello.
I write the code for returning the main page:
@app.route("/")
def get_index():
with open("index.html", "r") as file:
return file.read()
Клиент
of showing Клиент
. <meta charset="utf-8">
Answer the question
In order to leave comments, you need to log in
Basically, I wrote this:
@app.route("/")
def get_index():
with open("index.html", "r", encoding="utf-8") as file:
return file.read()
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question