Skip to main content

Helper package for assigning values to DB model objects.

Project description

Assignables

Helper package for Flask and Flask-API

Third Party Library Requirements

  • inflection

Introduction

This package is helper package for assigning values to SqlAlchemy db model objects and to get their dict representation so they can be sent as response for Flask-API endpoints.

Installation

pip install assignables

Usage

from assignables import Assignable

def class SomeModel(db.Model, Assignable):
    id = db.Column(db.Integer, primary_key=True)
    username = db.Column(db.String(80), unique=True, nullable=False)
    email = db.Column(db.String(120), unique=True, nullable=False)

    def __init__(self, username, email):
        Assignable.__init__()
        self.username = username
        self.email = email

Assignable will give your model two new methods:

  1. assign(data_dict) - this method will assign coresponding atributes from respective key valu pairs from data_dict.
  2. get_json_dict() - this method will return objects dictionary.

Using assign method will by default not assign objects id, but will other atributes if they exist in data_dict. Method get_json_dict will not have _sa_instance_state key inside by default and atriubets Assignable contains.

If you want to specify custom atributes for not assigning or not serializing you can do that: from assignables import Assignables

class SomeModel(db.Model, Assignable):
    id = db.Column(db.Integer, primary_key=True)
    username = db.Column(db.String(80), unique=True, nullable=False)
    email = db.Column(db.String(120), unique=True, nullable=False)

    def __init__(self, username, email):
        Assignable.__init__(unassignables=unassignables, unserializables=unserializables)
        unassignables = ['id', 'email']
        unserializables = ['_sa_instance_state', 'email']
        self.username = username
        self.email = email

If used like this, assign method will not assign id and email atributes. Dictinary returned by calling get_json_dict will not have keys _sa_instance_state and email.

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

assignables-0.0.1.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

assignables-0.0.1-py3-none-any.whl (5.2 kB view hashes)

Uploaded 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