Skip to main content

Sqlalchemy utilities for Takumi

Project description

https://travis-ci.org/elemepi/takumi-sqlalchemy.svg?branch=master

Sqlachmey utilities for Takumi.

Add Settings

The setting DB_SETTINGS must be defined in settings module.

DB_SETTINGS = {
    'test_db': {'dsn': 'sqlite:///:memory:'}
}

Init App

It’s not required to init app before using db. But it’s recommended to init app first:

db.init_app(app)

Query Database

The object db should be used to query database. And the only preferred way to query database is to use the context manager:

with db['test_db'] as session:
    session.query(User).all()

# or to use a different binding
with db['test_db'].using_bind('master') as s:
    s.query(User).all()

# or to tag the query
with db['test_db'].tag(hello=123, world=90) as s:
    s.query(User).all()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

takumi_sqlalchemy-0.1.5.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

takumi_sqlalchemy-0.1.5-py2.py3-none-any.whl (6.9 kB view hashes)

Uploaded Python 2 Python 3

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