I did just this and seems working
args = request.raw_args
args = args.split('/')
But now problem is with download function.
It works by taking filename from request.args
now, it should take value from request.raw_args
My download function is following:
def download():4
return response.download(request.raw_args,db)
How should I modify it to work again?

