My app.yaml wants to do this:
handlers:
- url: /process/(.*)
script: process.py \1
So that I can pass an argument to the process.py script.
This was working in the SDK, but oes not seem to be possible in the production servers, possibly because they are looking for a file to execute "process.py arg" which does not exist.
Can anyone think of a way to do this without having to use a framework like django etc?