DEV Community

Cover image for A Principled Approach to Authorization Using Python & SQLAlchemy
ssglaser
ssglaser

Posted on

A Principled Approach to Authorization Using Python & SQLAlchemy

Authorization is an unstructured problem. Writing code to decide who can do what in your app can cover a broad set of cases. The most structure that typically gets applied to this problem area is a set of if statements and roles, but in reality, there are a lot more patterns and structure that we can apply.

Oso is an open source system for building authorization into applications. It's a bit like SQLAlchemy in that it provides a structured approached to authorization, much like SQLAlchemy does for data modeling and access. Oso cofounder/CTO, Sam Scott, gave a talk providing a mental model for authorization and showing how to apply it using Oso, Python and SQLAlchemy - watch the recording below.

https://www.osohq.com/post/authorization-using-oso-python-sqlalchemy

Top comments (0)