Skip to content

Instantly share code, notes, and snippets.

View shirblc's full-sized avatar

Shir Bar Lev shirblc

View GitHub Profile
@shirblc
shirblc / models.py
Created November 11, 2021 17:13
SQLAlchemy ORM Read/Write Sharding
import os
import sys
import os
from sqlalchemy.ext.horizontal_shard import ShardedSession, ShardedQuery
from sqlalchemy.orm import declarative_base, sessionmaker
from sqlalchemy import (
create_engine,
Column,
Integer,
String,