Skip to main content

Baka: Skeleton framework built top of pyramid, baka_tenshi for sqlalchemy

Project description

Baka model add-ons

Baka_tenshi is add-ons baka framework built top of pyramid that provides an SQLAlchemy declarative Base alias model.Model and a add method on request.db.

Usage

You can use these as base classes for declarative model definitions, e.g.

from base_model.model import Model

class MyModel(Model):
    """Example model class."""

    __tablename__ = 'base.mymodel'

    @classmethod
    def do_first(cls, session):
    instance = session.query(cls).first()

Register Model

using Baka_tenshi, you can apply dependency injection method for model that has been created.

def includeme(config):
    config.register_model('base.MyModel')


# in view handler request
@route('/my.model', renderer='json')
def view_mymodel(request):
    MyModel = request.find_model('base.mymodel')
    mymodel = MyModel()
    mymodel.name = 'user model'
    mymodel.address = 'user address'
    mymodel.phone = '0089800-998'
    request.db.add(mymodel)

    return {'success': True}

Install

Install with .ini file

pyramid.includes =
   Baka_tenshi
   pyramid_debugtoolbar
   pyramid_mailer

Install with code

def includeme(config):
    config.include('Baka_tenshi')

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

baka_tenshi-1.0.3.dev8.tar.gz (11.1 kB view hashes)

Uploaded Source

Built Distribution

baka_tenshi-1.0.3.dev8-py2.py3-none-any.whl (12.8 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