How to route non-ascii URLs in Flask python
问题 Good afternoon, everyone! I have a problem with the routing my URL adress to Flask, precisely with running it in web-browser. All I want is to transfer the sharp symbol "#" and some Russian words (as like " #привет " or " #ПомогитеМнеПожалуйста ") together. The screenshot of error: My programming code at the moment looks like this: # -*- coding: utf-8 -*- from flask import Flask, jsonify app = Flask(__name__) @app.route('/hashtags/' + b'<names>'.decode('utf-8'), methods=['GET']) def get