SQLSoup

Software Screenshot:
SQLSoup
Software Details:
Version: 0.9.0
Upload Date: 15 Apr 15
Developer: Mike Bayer
Distribution Type: Freeware
Downloads: 66

Rating: 2.7/5 (Total Votes: 3)

SQLSoup is a tool that provides a convenient way to map Python objects to relational database tables, with no declarative code of any kind. It's built on top of the SQLAlchemy ORM and provides a super-minimalistic interface to an existing database.

Usage is as simple as:

import sqlsoup
db = sqlsoup.SQLSoup("postgresql://scott:tiger@localhost/test")

for user in db.users:
 print "user:", user.name

db.users.filter_by(name="ed").update({"name":"jack"})
db.commit()


Included for many years as an extension to SQLAlchemy itself, SQLSoup has been broken out into it's own project as of 2012. The community is encouraged to collaborate on Bitbucket with patches and features.

Documentation and status of SQLSoup is at http://readthedocs.org/docs/sqlsoup/.

Requirements:

  • Python

Similar Software

Other Software of Developer Mike Bayer

SQLAlchemy
SQLAlchemy

20 Jul 15

blogodev
blogodev

20 Feb 15

tracvatar
tracvatar

20 Feb 15

Comments to SQLSoup

Comments not found
Add Comment
Turn on images!