Vino

Vino 0.1.0

Vino is not ORM. Yes, it's true, it's not ORM.Get StartedA quick view with Vino:# setup# db = Vino('engine://user:passwd@host:port/database')db = Vino('sqlite://db.sqlite')# querydb.table('user').find(username='lepture').fetch()#...