Skip to main content

a tiny library for merging groups of data in a sql-join-like way

Project description

Make data merging Pythonic

joiner is a tiny library for merging groups of data in a sql-join-like way.

Example

Here is a quick example to get a feeling of joiner.

def test():
    hobbys = [
        {'first_name': 'A', 'last_name': 'yao', 'hobby': 'pingpong'},
        {'first_name': 'A', 'last_name': 'bob', 'hobby': 'shopping'},
        {'first_name': 'B', 'last_name': 'bob', 'hobby': 'shopping'},
    ]
    ages = [
        {'first_name': 'A', 'last_name': 'yao', 'age': 18},
        {'first_name': 'A', 'last_name': 'bob', 'age': 20},
    ]
    heights = [
        {'first_name': 'A', 'last_name': 'yao', 'height': 170},
    ]

    hobbys = Group(hobbys)
    ages = Group(ages, cols=Cols('age', age='how old'))
    heights = Group(heights, cols=Cols('height'))
    results = selectfrom(hobbys).leftjoin(ages).on(hobbys.first_name == ages.first_name, hobbys.last_name == ages.last_name)\
        .leftjoin(heights).on(hobbys.first_name == heights.first_name, hobbys.last_name == heights.last_name)\
        .get()
    for result in results:
        print(result)


test()
"""
{'first_name': 'A', 'last_name': 'yao', 'age': 18, 'how old': 18, 'height': 170, 'hobby': 'pingpong'}
{'first_name': 'A', 'last_name': 'bob', 'age': 20, 'how old': 20, 'height': None, 'hobby': 'shopping'}
{'first_name': 'B', 'last_name': 'bob', 'age': None, 'how old': None, 'height': None, 'hobby': 'shopping'}
"""

Installation

Use pip <http://pip-installer.org> or easy_install::

pip install joiner-python

Alternatively, you can just drop joiner.py file into your project—it is self-contained.

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

joiner-python-0.1.1.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

joiner_python-0.1.1-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

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