Talk Python migrated to Quart web framework

Over at Talk Python, I just finished converting our existing web app from Pyramid to Quart and from synchronous to asynchronous web code. And I did a big write up in case it helps anyone on similar journeys:

From the Talk Python blog:

The code powering talkpython.fm is highly modern and leverages many new Python concepts. It makes extensive use of Pydantic with its entire data access layer powered the Beanie ODM. It has type hints at all the architectural boundaries (e.g. data access layer public functions). But we haven’t been able to fully take advantage of these benefits because our web framework has become frozen in time…

Give the full article a read.