I am using flask URL to get parameters from front to back to pass it to query and it is working great with simple strings without any special character or space in it. However, when I pass "Historic_data CBD_3 (10WAY_10.0mWx59.0mW:28)" , it is not working. (string with special character like () . : and with white space)
I am running it on Linux. I tested it on windows and it was fine.
front
@app.route('/design/<string:des>')
callback
/design/Historic_Intersection%20CBD_3%20(3WAY_6.0mWx5.0mW:10)
I think URL encoding is being problem here, any suggestions ?