Skip to main content

pgalchemy

SQLAlchemy and Alembic support for PostgreSQL features like:

  • Row Level Security (RLS)
  • Policies
  • Column level privileges
  • Functions
  • Views and materialized views
  • Domains

Built on top of alembic_utils but with a more usable interface and a few missing features.

Installation

pip install pgalchemy

OR

poetry add pgalchemy

Policy and Row Level Security

Using the RLS BaseModel

Recommended for most projects. This suits projects where the majority of tables use RLS, which is almost every new project using this library. Models are secure by default, so forgetting to opt in cannot quietly expose a table.

from sqlalchemy import Column, Integer
from sqlalchemy.orm import declarative_base
from pgalchemy import Policy, PolicyType, PolicyCommands, rls_base

BaseModel = rls_base(declarative_base())

class MyModel(BaseModel):
    __tablename__ = 'my_models'
    id = Column(Integer, primary_key=True)
    user_id = Column(Integer)

Policy("pol_my_models_select_primary", on=MyModel, as_=PolicyType.PERMISSIVE, for_=PolicyCommands.SELECT, using="user_id = auth.uid()")
Policy("pol_my_models_delete_primary", on=MyModel, as_=PolicyType.PERMISSIVE, for_=PolicyCommands.DELETE, using="user_id = auth.uid()")
Policy("pol_my_models_update_primary", on=MyModel, as_=PolicyType.PERMISSIVE, for_=PolicyCommands.UPDATE, using="user_id = auth.uid()", with_check="user_id = auth.uid()")
Policy("pol_my_models_insert_primary", on=MyModel, as_=PolicyType.PERMISSIVE, for_=PolicyCommands.INSERT, with_check="user_id = auth.uid()")

Declaring a Policy registers it; there is nothing else to wire up.

Using the RLS decorator

Only intended for projects where most tables do not have RLS enabled -- usually existing projects using RLS for a niche use case.

This is not recommended otherwise, as it makes it easy for a developer to forget to enable RLS and expose a security vulnerability.

from sqlalchemy.orm import declarative_base
from pgalchemy import rls, policy, Policy, PolicyType, PolicyCommands

BaseModel = declarative_base()

@rls()
class MyModel(BaseModel):
    ...

# Equivalent to passing the policies inline:
# @rls(policies=[Policy("pol_my_models_primary", for_=PolicyCommands.ALL, using="user_id = auth.uid()")])
# or, if RLS is already on:
# @policy(Policy("pol_my_models_primary", for_=PolicyCommands.ALL, using="user_id = auth.uid()"))

The decorator also works the other way round -- opting a single model out of an rls_base:

@rls(enabled=False)
class PublicSetting(BaseModel):
    ...

@rls(force=True) additionally emits ALTER TABLE ... FORCE ROW LEVEL SECURITY, which applies policies to the table owner as well.

Core tables

from pgalchemy.rls import rls_for_table

rls_for_table()(my_table)

Policy options

argument meaning
name policy name (first positional argument)
on the model or Table the policy applies to
as_ PolicyType.PERMISSIVE (default) or PolicyType.RESTRICTIVE
for_ PolicyCommands.ALL (default), SELECT, INSERT, UPDATE, DELETE
to role name, or a list of role names
using row visibility expression
with_check expression checked on write

using and with_check accept either a SQL string or a SQLAlchemy expression; expressions are compiled with literal binds, so MyModel.user_id == 1 becomes my_models.user_id = 1.

Column level security

from sqlalchemy import Column, Boolean
from pgalchemy import allow_for_column, deny_for_column, PolicyCommands

class User(BaseModel):
    __tablename__ = 'users'
    is_admin = allow_for_column(PolicyCommands.SELECT, 'app_reader')(Column(Boolean))

pgalchemy only touches role/column combinations you have declared, so grants made outside of pgalchemy are never silently revoked. Use manage_cls_for_combo() to widen what pgalchemy owns (for example, an entire table for one role).

Configuration settings

Policies usually need to know who the current user is. PostgreSQL's set_config / current_setting are the usual channel, and pgalchemy.config wraps them.

from sqlalchemy import Integer, cast, func
from sqlalchemy.orm import Session
from pgalchemy import Policy, PolicyCommands
from pgalchemy.config import configure, config_value

Policy(
    "pol_posts_own",
    on=Post,
    for_=PolicyCommands.ALL,
    using=Post.user_id == cast(func.nullif(config_value("app.user_id"), ""), Integer),
)

with Session(engine) as session:
    configure(session, **{"app.user_id": current_user.id})
    session.scalars(select(Post))    # only that user's posts

There is also an attribute-style form, where each attribute builds up the dotted setting name and the result is a SQL expression:

from pgalchemy.config import Config

config = Config(session)
config.app.user_id = 7                             # set_config('app.user_id', '7', true)

Policy("pol_posts_own", on=Post, using=Post.user_id == config.app.user_id)
select(Post).where(Post.user_id == cast(config.app.user_id, Integer))

No .getter() needed. Config inherits SQLAlchemy's ColumnOperators, so comparisons work in both directions and the usual operators are available:

config.app.role == "admin"
config.app.tenant.in_(["acme", "globex"])
config.app.tenant.like("ac%")
cast(config.app.level, Integer) > 3                  # settings are text: cast to compare
cast(func.nullif(config.app.user_id, ""), Integer)

Note the cast on the numeric comparison. A setting is always text, so config.app.level > 3 builds valid-looking SQL that PostgreSQL then rejects with operator does not exist: text > integer. Comparisons against strings need no cast.

Config() works without a session, so settings can be referenced at import time when building policies; only assignment needs one.

By default an unset setting raises rather than reading as NULL, so a policy pointing at a setting nobody populated fails loudly instead of silently matching nothing. Pass Config(session, missing_ok=True) for the opposite; child nodes inherit it.

Because attribute lookup only invents a node for names that aren't real attributes, a setting segment named like one of the inherited methods (match, like, desc, op, … — see pgalchemy.config.RESERVED_ATTRIBUTE_NAMES) can't be spelled with a dot. Call the node instead:

config.app("match")            # names app.match
config("app.user_id")          # names app.user_id
config.app.set("match", "x")   # assignment equivalent

Three things to know:

  • Values are always text. current_setting returns text whatever you put in, so cast on the way out. Ints, floats, bools, datetime, UUID, dict and list are all serialised for you (containers as JSON, bools as true/false).
  • Settings are transaction-local. set_config is called with is_local=True, so a value is reset at COMMIT/ROLLBACK and cannot leak into the next transaction that borrows the same pooled connection.
  • Custom settings need a dotted prefix. PostgreSQL rejects set_config('user_id', ...). Since a dot is not a valid Python identifier, configure's keyword form only reaches built-in settings (configure(session, statement_timeout='5s')); for custom ones unpack a dict, or use set_config_value / Config.

Note the nullif(..., "") above: once a setting has existed on a connection it is reset rather than removed at the end of a transaction, so it reads back as '', and ''::int is an error rather than "no user". Guard casts accordingly.

Functions

From a Python function

from sqlalchemy import select
from pgalchemy.functions import sql_function
from pgalchemy.types import ReturnTypedExpression

@sql_function(schema='test')
def get_thing(id: int) -> ReturnTypedExpression[MyModel]:
    return ReturnTypedExpression[MyModel](
        select(MyModel).where(MyModel.id == id)
    )

The parameter is rendered as a reference to the SQL function's own argument (get_thing.id), not as a Python value, so the generated body is:

CREATE FUNCTION test.get_thing(id bigint) RETURNS TABLE(id integer, ...) AS $$
SELECT my_models.id, ...
FROM my_models
WHERE my_models.id = get_thing.id
$$ LANGUAGE sql

From a SQL file with an empty Python function

from pgalchemy.functions import sql_function

@sql_function(schema='test', path='../functions/get_thing.sql')
def get_thing(id: int) -> MyModel:
    pass

Relative paths resolve against the module that declares the function.

From a SQL file with explicit metadata

from pgalchemy.functions import Function

Function(
    schema='test',
    path='../functions/get_thing.sql',
    returns=MyModel,
    parameters=[('id', int)],
)

parameters accepts (name, type) tuples, (name, type, default) tuples or inspect.Parameter objects.

Views

From a Python function

from sqlalchemy import select
from pgalchemy.views import sql_view

@sql_view(schema='test')
def my_view():
    return select(MyModel).where(MyModel.published.is_(True))

Pass materialized=True for a materialized view.

From a SQL file

from pgalchemy.views import View

View(schema='test', path='../views/my_view.sql')

Domains

from sqlalchemy import Text
from pgalchemy.domains import RegexValidatedTextDomain

email = RegexValidatedTextDomain('email_address', Text, regex=r'^[^@]+@[^@]+\.[^@]+$')

Alembic setup

In env.py:

import pgalchemy.alembic          # registers the comparators and renderers
import myapp.models               # import your models so declarations register

target_metadata = myapp.models.Base.metadata

pgalchemy.alembic.register_entities()   # functions and views, via alembic_utils

Then:

alembic revision --autogenerate -m "..."
alembic upgrade head

RLS, policies and column privileges are compared by pgalchemy itself, so they appear in the same migration as the tables they apply to, and they downgrade cleanly:

def upgrade() -> None:
    op.create_table('users', ...)
    op.enable_rls('users', schema='public')
    op.create_policy('users_select_policy', 'users', 'as PERMISSIVE\nfor SELECT\nusing (true)', schema='public')
    op.grant_column('users', 'SELECT', 'is_admin', 'app_reader', schema='public')

A note on functions and views

alembic_utils has to reach the live database to work out what a function or view means. On a brand new database the tables they read from must therefore exist first: generate and apply the table migration, then run revision --autogenerate again to pick up functions and views. Policies do not have this restriction.

register_entities() also narrows alembic_utils to the entity types pgalchemy hands it. Without that, alembic_utils treats every entity it finds in the database as unmanaged and emits a drop for it -- including the policies and column grants pgalchemy just created. Call pgalchemy.alembic.allow_alembic_utils_defaults() if you want its original behaviour.

Available operations

operation SQL
op.enable_rls(table, schema=, force=) ALTER TABLE ... ENABLE ROW LEVEL SECURITY
op.disable_rls(table, schema=) ALTER TABLE ... DISABLE ROW LEVEL SECURITY
op.force_rls(table, schema=) ALTER TABLE ... FORCE ROW LEVEL SECURITY
op.no_force_rls(table, schema=) ALTER TABLE ... NO FORCE ROW LEVEL SECURITY
op.create_policy(name, table, definition, schema=) CREATE POLICY ...
op.drop_policy(name, table, schema=, definition=) DROP POLICY ...
op.grant_column(table, privilege, column, role, schema=) GRANT ... (col) ON ... TO role
op.revoke_column(table, privilege, column, role, schema=) REVOKE ... (col) ON ... FROM role

Tests

pytest                  # unit tests; no database required

Integration tests need PostgreSQL and skip themselves when none is reachable:

docker compose up -d
pytest -m integration

Point them elsewhere with PGALCHEMY_TEST_DSN, e.g. PGALCHEMY_TEST_DSN=postgresql+psycopg2://user@localhost:5432/db pytest -m integration.

Release files for pgalchemy 0.1.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pgalchemy 0.1.9
File Size Uploaded
pgalchemy-0.1.9.tar.gz 37.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for pgalchemy 0.1.9
File Interpreter ABI Platform
pgalchemy-0.1.9-py3-none-any.whl Python 3 none any Details

Total release size: 81.1 kB

Release files / pgalchemy-0.1.9.tar.gz

Download URL pgalchemy-0.1.9.tar.gz
Size 37.6 kB
Tags Source
SHA-256 checksum
How to use checksums
28fe501a234acbf07215c4ed31345cb2be2143ecff1ff8d7c75f8d32ac76b826
BLAKE2b-256 checksum
How to use checksums
38b62372632d0e151a0d200ec01d83a31b1305433334681dfa1349dc3640db3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/2.4.1 CPython/3.12.1 Linux/6.17.0-1020-azure

Release files / pgalchemy-0.1.9-py3-none-any.whl

Download URL pgalchemy-0.1.9-py3-none-any.whl
Size 43.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
086c640459e833a37327161ab5cbcc35783ffdf907c0be9f28a2a5acd5bd5176
BLAKE2b-256 checksum
How to use checksums
e486c5f2ac7d755b2fffc50d9ded35b3a4295d0193679cbae24c280ceaac00a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/2.4.1 CPython/3.12.1 Linux/6.17.0-1020-azure

Release history Release notifications | RSS feed

0.2.0

2 release files

This release

0.1.9 This release

2 release files

0.1.8

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.3

2 release files

0.1.2

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page