Try this:

routes_in = (
  ("/user/(.+)", r"/welcome/user/view/\1"),
}

routes_out = (
  ("/welcome/user/view/(.+)", r"/user/\1)"),
}

Reply via email to