DEV Community

Discussion on: Bocadillo: Yet Another Python Framework

Collapse
 
florimondmanca profile image
Florimond Manca • Edited

Maintainer of Bocadillo here! 👋

Thanks a lot for this post, @aligoren ! Very concise and nicely written. :-)

P.S.: the "ASGI 'lifespan' protocol appears unsupported." message you see when starting the Uvicorn server is because app.py is missing a small thing, i.e. a call to configure():

from bocadillo import App, configure

app = App()
configure(app)

This is documented here, if you're interested: Minimal working application

Thanks again for this article!

Collapse
 
itachiuchiha profile image
Itachi Uchiha

Hehe :)

Thanks. I actually knew that (ASGI lifespan message). I have a plan for Bocadillo. I'm thinking about a series. Maybe like Miguel Grinberg's Flask series.

I enjoyed with Bocadillo. Thanks <3 :)

Collapse
 
florimondmanca profile image
Florimond Manca

That would be awesome! If you need anything from me, my DMs are open, here or on Twitter. :)

Thread Thread
 
itachiuchiha profile image
Itachi Uchiha

Haha. Are you sure? I’ll be trouble :P