Solution

Makes SQLAlchemy easy and fun to use, and adds some custom capabilities
Download

Solution Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • Juan-Pablo Scaletti
  • Publisher web site:
  • http://github.com/lucuma/

Solution Tags


Solution Description

Solution is a Python module that makes SQLAlchemy easy and fun to use, and adds some custom capabilitiesExample:from solution import SQLALchemydb = SQLALchemy('postgresql://scott:tiger@localhost:5432/mydatabase')class ToDo(db.Model): id = db.Column(db.Integer, primary_key=True) title = db.Column(db.String(60), nullable=False) done = db.Column(db.Boolean, nullable=False, default=False) pub_date = db.Column(db.DateTime, nullable=False, default=datetime.utcnow)to_do = ToDo(title='Install Solution', done=True)db.add(to_do)db.commit()completed = db.query(ToDo).filter(ToDo.done == True).all()It does an automatic table naming (if no name is defined) and, to the base query class, adds the following methods:- first_or_notfound- get_or_notfound- to_jsonProduct's homepage


Solution Related Software