Problem with between join for sqlalchemy orm relation.
- by Gary van der Merwe
I'm trying to create a relation that has a between join. Here is a shortish example of what I'm trying to do:
#!/usr/bin/env python
import sqlalchemy as sa
from sqlalchemy import orm
from sqlalchemy.engine.base import Engine
from sqlalchemy.ext.declarative import declarative_base
metadata = sa.MetaData()
Base =…