Skip to main content

The tool for creating notes

Project description

https://travis-ci.org/Krukov/reformer.svg?branch=master

Simple and beautiful library for data formatting/convert/serialize

pip install reformer

Why

There are many great python libraries for validation, serialization and data formatting search as marshmallow, DRF etc. Usually they base on data validation.

Otherwise reformer design only for data formatting, and in a schema you need to define type of transformation and data source.

How to use

To define schema you need to create Reformer base class:

from reformer import Reformer, Field, MapField, MethodField

class Schema(Reformer):
    _fields_ = ('name', 'surname')
    fullname = Field('name').replace('_', '-')  + ' ' + Field('surname')
    admin = Field('username').at(['admin', 'root'])
    welcome = MapField('username', {
        'admin': 'Hi bro',
        'root':  'God?'
    })
    posts_titles = Field('posts').iter(['title'])
    status = ('http://api.com/get_user_status/' + Field('id', to=str)).handle(requests.get)


target = {
    'id': 353,
    'name': 'John',
    'surname': 'Black',
    'username': 'admin',
    'posts': [
        {'title': 'New', 'id': 10},
        {'title': 'My first post', 'id': 11},
    ]
}

print(Schema.transform(target))
# OrderedDict([
#    ('name', 'John'),
#    ('surname', 'Black'),
#    ('fullname', 'John Black'),
#    ('admin', True),
#    ('welcome', 'Hi bro'),
#    ('posts_titles', ['New', 'My first post']),
#    ('status', 'INIT'),
# ])

FUTURE

  • errors

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

reformer-0.1.1.tar.gz (4.2 kB view hashes)

Uploaded source

Built Distribution

reformer-0.1.1-py3-none-any.whl (4.4 kB view hashes)

Uploaded py3

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