Simple Models for Python
Project description
SimpleModel offers a simple way to handle data using classes instead of a plenty of lists and dicts.
It has simple objectives:
Define your fields easily (just a tuple, not dicts or instances from type classes whatever)
Support for field validation
Serialize to dict
That’s it. If you want something more complex there are plenty of libraries and frameworks that does a lot of cool stuff.
How to install
pip install pysimplemodel
How to use
from simple_model import Model
from simple_model.exceptions import ValidationError
class Person(Model):
fields = ('name', 'age', 'gender', 'height', 'weight')
allow_empty = ('height', 'weight')
def validate_age(self, value):
if 0 > value > 150:
raise ValidationError
def validate_gender(self, value):
if value not in ('M', 'F'):
raise ValidationError
>> person = Person(name='John Doe', age=18, gender='M')
>> person.name
'John Doe'
>> person.validate()
>> person.serialize()
{'name': 'John Doe', 'age': 18, 'gender': 'M', 'height': '', 'weight': ''}
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
pysimplemodel-0.0.3.tar.gz
(2.4 kB
view details)
File details
Details for the file pysimplemodel-0.0.3.tar.gz
.
File metadata
- Download URL: pysimplemodel-0.0.3.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de549a8a7c9b2156c8ce3bb8a5dc89092e15687685b62b82b3b5eab25befdf64 |
|
MD5 | b7ce3ad11a9e320cb74d534d2d39dd3d |
|
BLAKE2b-256 | 7ea7976bc73207b5a5320e30fd53412010120cd48f920a9b6725ef72532ead30 |