Git Product home page Git Product logo

Comments (3)

berislavlopac avatar berislavlopac commented on July 23, 2024 1

Thank you @tomchristie -- just a brief addition. I have actually expressed this wrong, as by "subclass" I was actually thinking of a "subtype", i.e. -- exactly as you said -- that it would be useful if all ASGI apps in Starlette (routes, endpoints etc) shared the same interface. Perhaps that can be formalised in the form of some kind of ABC or mixin or something similar. Thank you for the great work!

from starlette.

marcosschroh avatar marcosschroh commented on July 23, 2024

I was wondering something similar or maybe when we instantiate Starlette we can set the router attribute as well, like we are doing with the debug attribute, but I am.not sure. What do you think guys?

from starlette.

tomchristie avatar tomchristie commented on July 23, 2024

Would it make sense to make Router a subclass of Starlette

Not really, the Router class is a subset of the features that Starlette class offers.
If you want to mount a

What we should do tho, is make sure that router and app share the same fundamental API for routing. First pass on that means that stuff like this ought to just work.

app = Router()

@app.route('/')
async def homepage(...):
    ...

It's possible that we should hide away the lower-level Path interface (at least at this point), or else find a clean way to expose the same thing in Starlette, so that the two interfaces match.

Once we've got two properly matching interfaces, then it's clearer.

It's also worth highlighting that you can submount Starlette instances onto a parent, too. That's what you need to do if you want to have a submounted set of functionality that also handles eg. lifespan, or custom exception handling.

from starlette.

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.