sqlwitch

Offers idiomatic SQL generation on top of MySQLdb
Download

sqlwitch Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Publisher Name:
  • Jonas Galvez

sqlwitch Tags


sqlwitch Description

Offers idiomatic SQL generation on top of MySQLdb sqlwitch is a Python library which offers idiomatic SQL generation on top of MySQLdb.Usage:with db.insert(into='foobars') as obj: obj.foo = 1with db.select('foo, bar', from_='foobars'): db.where('foo = 1')with db.update('foobars') as changeset: changeset.foo = 2 db.where('foo = 1')with db.delete(from_='foobars'): db.where('foo = 2')Setup: pip install sqlwitch # or easy_install sqlwitch # or cd sqlwitch-0.2; python setup.py install Requirements: · Python


sqlwitch Related Software