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.14.tar.gz
(147.3 kB
view details)
File details
Details for the file Solution-1.1.14.tar.gz
.
File metadata
- Download URL: Solution-1.1.14.tar.gz
- Upload date:
- Size: 147.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a2c8873bcb2373a515d311310291c8b892c2258b008b26d0349e92f5027d642 |
|
MD5 | 20b6fd532903640cc75da319ff17b86e |
|
BLAKE2b-256 | a1edc4a3e9109b6d908a8ff3db9c378b1edcc380794b43ae7801df946c6de452 |