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 from Flask-API endpoints. This package can be used without using SqlAlchemy, Flask and Flask-API.
Installation
pip install assignables
Usage
from assignables import Assignable
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=None, email=None):
Assignable.__init__()
self.username = username
self.email = email
data = {
"username": 'user123',
"email": 'user@email.com'
}
obj = SomeModel()
obj.assign(data) # username and email will be assigned.
obj_dict = obj.get_json_dict() # obj_dict won't contain _sa_instance_state and Assignable class atributes.
Assignable will give your model two new methods:
assign(data_dict)
- this method will assign coresponding atributes from respective key value pairs fromdata_dict
.get_json_dict()
- this method will return objects dictionary.
Using assign
method by default will 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 class 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=None, email=None):
unassignables = ['id', 'email']
unserializables = ['_sa_instance_state', 'email']
Assignable.__init__(unassignables=unassignables, unserializables=unserializables)
self.username = username
self.email = email
data = {
"username": 'user123',
"email": 'user@email.com'
}
obj = SomeModel()
obj.assign(data) # username will only be assigned.
obj_dict = obj.get_json_dict() # obj_dict will not contain _sa_instance_state and email atributes.
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
.
You can also add you custom data validator - Validation will be executed inside assign
method.
If validation failed ValidationError
exception is raised.
from assignables import DataValidator, Assignables
class CustomValidator(DataValidator):
def validate(self, obj):
# return True if validated, false otherwise.
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=None, email=None):
Assignable.__init__(validator=CustomValidator())
self.username = username
self.email = email
data = {
"username": 'user123',
"email": 'user@email.com'
}
obj = SomeModel()
obj.assign(data) # Data will be validate using you custom data validator.
If there is a missmatch between your atribute naming or you wish to specify a naming convetion for resulting dictionary there is a way.
data = {
"Username": 'user123',
"Email": 'user@email.com'
}
obj = SomeModel()
obj.assign(data, under_score_data=True) # This will handle create snake case keys from data dictionary keys.
obj_dict = obj.get_json_dict(naming_convetion='camel_case') # Output dict would have camel case keys.
Options for naming_convention
are:
- camel_case
- upper_camel_case
- snake_case
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
Built Distribution
File details
Details for the file assignables-1.0.0.tar.gz
.
File metadata
- Download URL: assignables-1.0.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 984dc296778c33c8da398abf3b6579e88d971c723bff65d85e5a6c30a6cde4b4 |
|
MD5 | 75bce4af27670662c1466ebe5f6a26ff |
|
BLAKE2b-256 | 0dfca8d33aef5522299ff9be7c480e8e9ba8e2ae73c95bca2f957dd03dd90bc0 |
File details
Details for the file assignables-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: assignables-1.0.0-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d97259e933e1ec924cc910674496d5d0f09cbc2c1e061dbd064e9eabe1fe326 |
|
MD5 | 9509e42311bc3ccf49d65609afb3820d |
|
BLAKE2b-256 | 6c7535c15c653f03543dabeba1de3117d1eb222efe972163540668b926b8292a |