Skip to main content

Small lib for representing python objects as a dicts

Project description

python-dehydrate

https://travis-ci.org/l0kix2/python-dehydrate.png?branch=master https://coveralls.io/repos/l0kix2/python-dehydrate/badge.png?branch=master

Small lib for representing python objects as a dicts.

Motivation

Why would you need library like this? One of obvious use cases is to prepare data for serializing (into json/yaml/xml/pickle/whatever). You can control dehydration process by describing how to fetch values from object and how to present it in dehydrated structure using simple syntax.

Examples

Simple case

In simplest of possible cases you just want get object, list wanted attributes and get mapping with keys based on attribute names and values from them. Use dehydrate shortcut for this case.:

>>> from dehydrate import dehydrate
>>> from examples import Person
>>> iron_man = Person(first_name='Tony', login='iron_man')
>>> dehydrated = dehydrate(obj=iron_man, fields=('first_name', 'login'))
>>> sorted(dehydrated.items())
[('first_name', 'Tony'), ('login', 'iron_man')]
Some notes:
  • I use list representation of dict in examples because it has predictable order of items in it.

  • In docs I will refer to examples package, which you can find in repo.

But what if you want put first_name attribute in name key of resulted dict? Just specify both strings in fields.:

>>> from dehydrate import dehydrate
>>> from examples import Person
>>> iron_man = Person(first_name='Tony', login='iron_man')
>>> dehydrated = dehydrate(obj=iron_man, fields=(
...     ('first_name', 'name'),
...     'login',
... ))
>>> sorted(dehydrated.items())
[('login', 'iron_man'), ('name', 'Tony')]

Installation

Simple:

pip install dehydrate

must be fine.

Requirements

  • six

Philosophy

  • Easy things should be done easily.

  • Complex things must be possible.

Testing

Test written with use of pytest library and neat pytest pep8 plugin. You should run python setup.py test for running full test suite or coverage run --source=dehydrate setup.py test for tests with coverage. Tests automatically runs at Travis CI. Examples in documentation are also picked by test command.

Contribution

Any contribution is welcome. Use fork/pull request mechanism on github.

If you add some code, you should add some tests, so coverage of master branch should always be 100%. Refer to Testing section for more instructions.

Let me speak from my heart :). I will be very glad, if you correct my clumsy english phrases in docs and docstings or even advise more appropriate names for variables in code.

TODO

  • Think about giving opportunity to put results in Ordered dict instead of simple dict.

  • Add functionality for converting all values of some type using handlers on dehydrator class.

Changelog

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

dehydrate-0.1.tar.gz (7.3 kB view hashes)

Uploaded Source

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