Tales of a lazy developer

Posted on Sun 22 January 2017 in programming • Tagged with python, sqlalchemy, dontdothisathomekids

Some say laziness makes a good developer. I don't know if that's always true.

Anyhow, just like everybody else, I hate typing, so I've created some helpers for sqlalchemy to get rid of the boring stuff in creating ORM-Classes

import sqlalchemy.orm.exc
from sqlalchemy import Column, ForeignKey, Integer, String …

Continue reading