Python wildcard route support#928
Conversation
|
Hi @DrMegavolt, I'm curious about your use case. It seems to me that the bug is more about supporting random paths in the NodeJS runtime. Why do you need this? |
|
@andresmgot So the if method is GET then function itself can access query and routing parameters. As of now we specifically set path to |
|
Understood, thanks for the explanation. I agree it could be a good addition. I've just build the images for the different python versions and I added it to this PR. Do you mind rebasing master to fix the CI issue? |
…ntimes use wildcard
7bbd660 to
d12f175
Compare
|
@andresmgot I've rebased the changes |
|
Thanks for the changes! I am merging this. |

Hello,
Issue Ref: This is proposal to make function routing handling consistent
Description:
Node.js and other runtimes listen to wildcard route. Python is exception
this is how wildcard route is defined in the Bottle framework
'/<:re:.*>'bottlepy/bottle#178