Skip to main content

Easy, model based data wrangling.

Project description

wrangle_pypes

Easy, model based data wrangling.

Checked with mypy Code style: black

Origin

This project came about thanks to having implemented this concept in a prior project (dfb_predict) and wanting to reuse it. In said previous project it came about, because we wanted to play around with data-oriented design and figured that if we break up the transformations required during data-wrangling/munging into a simple "AST" where each node represents a single transformation. And to further the idea we to some inspiration from one of the Unix philosophy core tenants, i.e. a single transformation should do one simple thing only, and allow for composition to implement more complex behavior.

Example

from dataclasses import dataclass
import json

from wrangle_pypes import Pipeline
from wrangle_pypes.transformations import Get, Create, Cast

@dataclass
class Point:
    x: int
    y: int


@dataclass
class Square:
    A: Point
    B: Point


pipeline = Pipline({
    Square: {
        "A": Get("A") | Create(Point),
        "A": Get("B") | Create(Point),
    },
    Point: {
        "x": Get("x") | Cast(int),
        "y": Get("y") | Cast(int),
    }
})

data = """
[
    {
        "A": {"x": 0, "y", 0},
        "B": {"x": 1, "y", 1},
    }, {
        "A": {"x": 10, "y", 10},
        "B": {"x": 11, "y", 11},
    }
]
"""

squares = list(pipeline.create_multiple(json.loads(data)))

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

wrangle_pypes-0.3.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

wrangle_pypes-0.3-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file wrangle_pypes-0.3.tar.gz.

File metadata

  • Download URL: wrangle_pypes-0.3.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for wrangle_pypes-0.3.tar.gz
Algorithm Hash digest
SHA256 624347838dd19bf2904440bc4bf36c41229aed519963ca0c2b6b14f6288a5c78
MD5 4f8666d25bdf6bd729759ca4060ded0e
BLAKE2b-256 a3c9c2a66e803f5d7e86dad77c409a4eb05f2111423d03c3d2c6ad3e384a306a

See more details on using hashes here.

File details

Details for the file wrangle_pypes-0.3-py3-none-any.whl.

File metadata

  • Download URL: wrangle_pypes-0.3-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for wrangle_pypes-0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ba1a7643a7436d6dc71a2216e7bb9a1f49a07520adf16162a8a6c9ddeb2609c4
MD5 38d696fdbddb5b2022b3076730d4a977
BLAKE2b-256 3ebe4e4339d857653425f678fb2b6723cd53922ce90cb1b8ee597315270de35f

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