If you are using the orm and the table is not big (or you have its amount of rows cached) and you want it to be database independent the really simple approach is.
import random
random rand = int(session.query(Table).count() * random.random()random.randrange(0, session.query(Table).count())
row = session.query(Table)[randomsession.query(Table)[rand]
This is cheating slightly but thats why you use an orm.
