Skip to main content

convtools is a python library to declaratively define fast conversions from python objects to python objects, including processing collections and doing complex aggregations.

Project description

convtools is a python library to declaratively define fast conversions from python objects to python objects, including processing collections and doing complex aggregations.

https://img.shields.io/pypi/pyversions/convtools.svg https://img.shields.io/github/license/itechart-almakov/convtools.svg https://codecov.io/gh/itechart-almakov/convtools/branch/master/graph/badge.svg Tests Status Documentation Status https://img.shields.io/github/tag/itechart-almakov/convtools.svg https://badge.fury.io/py/convtools.svg Downloads

Description

The speed of convtools comes from the approach of generating code & compiling conversion functions, which don’t have any generic code like superfluous loops, ifs, etc.

So you can follow the DRY principle by storing and reusing the code on the python expression level, but at the same time be able to run the gen_converter and get the compiled code which doesn’t care about being DRY and is generated to be highly specialized for the specific need.

Conversions are not limited to simple data transformations, there are GroupBy & Aggregate conversions with many useful reducers:

  • from common Sum, Max

  • and less widely supported First/Last, Array/ArrayDistinct

  • to DictSum-like ones (for nested aggregation) and MaxRow/MinRow (for finding an object with max/min value and further processing)

Every conversion:
  • contains the information of how to transform an input

  • can be piped into another conversion (same as wrapping)

  • has a method gen_converter returning a function compiled at runtime

  • despite being compiled at runtime, is debuggable with pdb due to linecache populating.

Installation:

pip install convtools

Documentation

convtools on Read the Docs

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

convtools-0.2.1.tar.gz (49.4 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