I have a simple Flask route:
@app.route('/get_dir/<path>')
def get_dir(path):
# do some stuff
return path
This works fine for urls of the form localhost:5000/my_path/.
However, I really want this to work with an indeterminate amount of subpaths, like:
localhost:5000/my_path/sub_path/another_sub_path/
so that my path variable contains the everything after the route as a string:
path='path/sub_path/another_sub_path/
I guess I need to ignore slashes when capturing the variable, but I am new to Flask and I'm not sure how to tackle this.
Any help would be much appreciated.