A one step database access tool, built on the SQLAlchemy ORM.
Project description
SQLSoup 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.all(): 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/.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file sqlsoup-0.9.1.tar.gz
.
File metadata
- Download URL: sqlsoup-0.9.1.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fafb7732a663dcd59b37e64d1c94d5fb20d4fad32cd8ee260aa1cd9a10340d6 |
|
MD5 | 93a10558873b4fb3f0877419001888cf |
|
BLAKE2b-256 | 7231d0e976a0a9545df83f1462e940ba28370f70ce1bf512e116847a7eb32215 |