Skip to content

Instantly share code, notes, and snippets.

@RPG-fan
RPG-fan / psycopg3_logical_replication.py
Last active October 15, 2025 20:54
A production-ready implementation of PostgreSQL logical replication using psycopg3. Works around psycopg3's missing replication support by using a raw socket bridge.
"""
PostgreSQL Logical Replication for psycopg3
A production-ready implementation of PostgreSQL logical replication using psycopg3.
Works around psycopg3's missing replication support by using a raw socket bridge.
Author: Richard Brandes
Date: October 2025
License: MIT