sqlobject 1.6.0-1 source package in Ubuntu

Changelog

sqlobject (1.6.0-1) unstable; urgency=low


  * Update to latest upstream release.
    - Drop support for python 2.4
  * Add pgpsigurlmangle hint to debian/watch.
    - Also add upstream signing key.
  * Make upstream News.txt available as changelog to match policy.
  * Add basic example from upstream docs.

 -- Neil Muller <email address hidden>  Sat, 21 Jun 2014 20:59:34 +0200

Upload details

Uploaded by:
Debian Python Modules Team
Uploaded to:
Sid
Original maintainer:
Debian Python Modules Team
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Utopic: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
sqlobject_1.6.0-1.dsc 2.0 KiB 805c6c6f8374b6104bb606e8e1101bfd8c4e98e166eea97a8d0957e133b21e3f
sqlobject_1.6.0.orig.tar.gz 270.0 KiB 7299dc568d074ea8cb418bf3ad64a5ed380ae6c18be381519ead6c6a2e578b95
sqlobject_1.6.0-1.debian.tar.xz 44.3 KiB 3805ff6cbbd34d7c5b7eb9ee4452e94160d3a5ff71f63646f9f068e788bf7ae1

Available diffs

No changes file available.

Binary packages built by this source

python-sqlobject: object relational manager providing an object interface to your database

 SQLObject is an object-relational mapper. It allows you to translate RDBMS
 table rows into Python objects, and manipulate those objects to transparently
 manipulate the database.
 .
 In using SQLObject, you will create a class definition that will describe how
 the object connects to the database (in addition to any other methods you may
 wish to add to the class). SQLObject will produce the code to access the
 database, and update the database with your changes. The interface to the
 database is meant to be indistinguishable from other interfaces you may add
 to the object.
 .
 SQLObject also includes a novel feature to generate WHERE clauses using
 Python syntax and objects (instead of generating SQL using string
 substitution, as is traditional).