Skip to main content

very simple model framework

Project description

As the name says, this is a very simple model framework. It can be used for data validation and (de-)serialization.

Installation

Install with pip:

$ pip install --user simple_model

Usage

Examples:

>>> from simple_model import Model, Attribute

>>> class Data(Model):
...     name = Attribute(str)
...     some_value = Attribute(str, nullable=True)
...     another_value = Attribute(int, fallback=0)

>>> Data(name = 'test', some_value = None, another_value = 12).__attributes__()
{ 'name': 'test', 'some_value': None, 'another_value': 12 }

>>> Data(name = 'test', _allow_missing=True).__attributes__()
{ 'name': 'test', 'some_value': None, 'another_value': 0 }

>>> Data(name = 'test', unknown_value = True, _allow_missing=True, _allow_unknown=True).__attributes__()
{ 'name': 'test', 'some_value': None, 'another_value': 0 }

>>> init_dict = {'name': 'test', 'some_value': 'val', 'another_value': 3}
>>> Data(**init_dict)
{ 'name': 'test', 'some_value': 'val', 'another_value': 3 }

Initializing with unknown or missing attributes while not specifying to allow them will result in a TypeError.

The default behaviour for missing/unknown attributes can be changed:

>>> class Data(Model):
...     __allow_unknown__ = True
...     __allow_missing__ = True

Serialization can be achieved easily, for example:

>>> import json
>>> def serialize(model):
...     return json.dumps(model.__attributes__())

>>> def deserialize(string):
...     return Data(**json.loads(string))

Since the Model class simply calls the Attribute class for each parameter and the Attribute class in turn calls the given ‘type’, one could easily use functions instead of types to achieve more complex results and value parsing:

>>> from datetime import datetime
>>> def parse_date(string):
...     return datetime.strptime(string, '%Y-%m-%d')

>>> class Data(Model):
...     date = Attribute(parse_date)

>>> Data('2015-11-20').__attributes__()
{ 'date': datetime.datetime(2015, 11, 20, 0, 0) }

Fallback values can also be given as functions

>>> def fun():
...     return "foo"

>>> class Data(Model):
...     point = Attribute(str, fallback=fun)

>>> Data(_allow_missing=True).__attributes__()
{ 'point': 'foo' }

Tests

To run the tests use tox:

$ tox

Or run py.test manually (not recommended, needs simple_module installed):

$ py.test .

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

simple_model-0.0.8.tar.gz (3.2 kB view details)

Uploaded Source

File details

Details for the file simple_model-0.0.8.tar.gz.

File metadata

File hashes

Hashes for simple_model-0.0.8.tar.gz
Algorithm Hash digest
SHA256 88ea94a20fdf3598de5b7e79f5982284246ea84b202fc1cb7821e1a5eaa7f3ae
MD5 abcc85ae5dfca60aa23f05103d701164
BLAKE2b-256 0919dec89646c1af99f45eb5b19e5a6396734f42bf9a2b2bc86a7e377e8cb688

See more details on using hashes here.

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