Skip to main content

Implements an easy-to-use bridge to SQLAlchemy

Project description

Example:

from solution import SQLALchemy

db = 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_json

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

Solution-1.1.10.tar.gz (147.0 kB view details)

Uploaded Source

File details

Details for the file Solution-1.1.10.tar.gz.

File metadata

  • Download URL: Solution-1.1.10.tar.gz
  • Upload date:
  • Size: 147.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Solution-1.1.10.tar.gz
Algorithm Hash digest
SHA256 51a07209d1bb5810320b365d9db737dd99ee949915afa1b9b5cd255eb74cf9bf
MD5 b4dd2b8dad74111b9e0a286c1f30b4e5
BLAKE2b-256 57f7ca209f0dc7aee947f051e0bd1e2f7cf4b5ce7da9e310fa7832ea55c0142d

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page