Skip to main content

Unpacking dicts is now easier than ever

Project description

https://travis-ci.com/yehonatanz/dictmatching.svg?branch=master https://codecov.io/gh/yehonatanz/dictmatching/branch/master/graph/badge.svg

Unpacking dicts is now easier than ever:

from dictmatching import unpack

d1 = dict(a=1, b=2)
d2 = dict(x=3, y=4)
with unpack(d1) as b, unpack(d2) as (x, y):
    assert b == 2
    assert x == 3
    assert y == 4

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

dictmatching-0.1.1.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

dictmatching-0.1.1-py2.py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 2 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