I've just installed Flask and it's my first time using it. After following the demo on the site, I managed to set up the webserver, but for some reason, it outputs unreadable characters
D:\Dafuq\SELF\Flask\Blog>python app.py
Unicode characters: љњертѕуиопасдфгхјклчќзџцвбнм
* Serving Flask app "app" (lazy loading)
* Environment: production
WARNING: Do not use the development server in a production environment.
Use a production WSGI server instead.
* Debug mode: on
* Restarting with stat
Unicode characters: љњертѕуиопасдфгхјклчќзџцвбнм
* Debugger is active!
* Debugger PIN: 782-294-512
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
127.0.0.1 - - [16/Feb/2019 09:52:35] "[37mGET / HTTP/1.1[0m" 200 -
127.0.0.1 - - [16/Feb/2019 09:52:36] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
I outputed some unicode characters, and the console prints them with no issue. What could be the problem for the unrecognized characters at the GET request lines?
Thank you