Automagic __repr__ for SQLAlchemy entities with primary key columns with Declarative Base.

According to the Python documentation about __repr__, a call to repr() should give you a valid Python expression if possible. This is a very useful guideline. And it is also something I I like to implement in my Python projects as much as possible. Now, for mapped database entities, you might argue that it makes … Continue reading Automagic __repr__ for SQLAlchemy entities with primary key columns with Declarative Base.