yehonatanz / dictmatching

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dictmatching

https://travis-ci.com/yehonatanz/dictmatching.svg?branch=master Maintainability

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

About

License:MIT License


Languages

Language:Python 100.0%