Coder Social home page Coder Social logo

Comments (4)

ahopkins avatar ahopkins commented on September 22, 2024 1

@hieulw Using : may not be a safe pattern since it is a reserved token in the RFC specification. Regardless, you can continue to use it as described in the docs for regex matching.

@app.get(r"/<entity_id:(?P<entity_id>.*)\:mode>")
async def handler(request: Request, entity_id):
    return json({"entity_id": entity_id})

Since your example only contains one matching group (the entity_id) you can simplify it:

@app.get(r"/<entity_id:(.*)\:mode>")

To have an exact parity with the str pattern:

@app.get(r"/<entity_id:([^/]+)\:mode>")

This final one is probably what you want.

I hope you fix the regex pattern to suit more cases.

I am not aware of any unsupported cases that do not meet the documentation. Happy to hear if there are others.

from sanic-routing.

ahopkins avatar ahopkins commented on September 22, 2024 1

@hieulw Nothing we can't solve without a bit of regex magic 🪄

@app.get(r"/<entity_id:([^/]+)\:mode>")
async def handler_mode(request: Request, entity_id):
    return json({"entity_id": entity_id, "mode": True})


@app.get(r"/<entity_id:(?P<entity_id>[^/]+)(?!\:mode)>")
async def handler_reg(request: Request, entity_id):
    return json({"entity_id": entity_id, "mode": False})
$ curl localhost:9999/1234 localhost:9999/4567:mode
{"entity_id":"1234","mode":false}
{"entity_id":"4567","mode":true}

from sanic-routing.

hieulw avatar hieulw commented on September 22, 2024

I attempt to change the regex, but it will not recognize a route that contains colon :
How can I change this behavior ? : is really needed in my route, and It cannot change

from sanic-routing.

hieulw avatar hieulw commented on September 22, 2024
@app.get(r"/<entity_id:([^/]+)\:meta>")

Thanks @ahopkins! This approach works very well, but it seems /<entity_id> and /<entity_id:([^/]+)\:meta> are considered the same route, which not what I expected.

from sanic-routing.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.