SQL-style joins for iterables.
Project description
SQL-style joins for Python iterables.
>>> from join import join, merge, tuple_join
>>> dogs = [
... Dog('gatsby', 'Rruff!', 16),
... Dog('ein', 'wruf!', 9),
... ]
>>> cats = [
... Cat('pleo', 'mreeeoww', 16),
... Cat('xena', 'mreow', 12),
... Cat('gatsby', 'rowr', 15),
... ]
>>> catdogs = merge(cats, dogs, key='name')
>>> catdogs
[CatDog({'right': Dog(name='gatsby', woof='Rruff!', weight=16), 'name': 'gatsby', 'weight': 15, 'meow': 'rowr', 'woof': 'Rruff!', 'left': Cat(name='gatsby', meow='rowr', weight=15)})]
>>> catdogs[0].meow
'rowr'
>>> catdogs[0].woof
'Rruff!'
Installation
Install using pip:
pip install join
Use
join does the work of associating iterable items together, but gives you all the power for customization, letting you supply your own join function, separate keys for left and right iterables, and even letting you use functions instead of attribute names.
merge used above, for example, is join using an object union to join matched objects. You can use a tuple join, which is default for join:
>>> join(cats, dogs, key='name', join_fn=tuple_join)
[(Cat(name='gatsby', meow='rowr', weight=15), Dog(name='gatsby', woof='Rruff!', weight=16))]
Supplying your own join function is easy:
>>> def weight_sum(left, right):
... return left.weight + right.weight
...
>>> join(cats, dogs, key='name', join_fn=weight_sum)
[31]
Using separate key functions is easy too:
>>> def cat_key(cat):
... return cat.weight % 3 == 0 # weight divisible by 3
...
>>> def dog_key(dog):
... return dog.weight % 4 == 0 # weight divisible by 4
...
>>> def name_join(left, right):
... return left.name + '-' + right.name
...
>>> join(cats, dogs, left_key=cat_key, right_key=dog_key, join_fn=name_join)
['pleo-ein', 'xena-gatsby', 'gatsby-gatsby']
Contributing
Pull requests and issues welcome! Run tests from project root with sh run_tests.sh.
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
File details
Details for the file join-0.1.1.tar.gz
.
File metadata
- Download URL: join-0.1.1.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb5889f72a0e74c0b12325fd14f6daff3f619a7544fc67e2aa14ce2cbc6aa07d |
|
MD5 | 1216b6dc20b2c32f9d11bfc9749633ad |
|
BLAKE2b-256 | 4391a4e490adad247d275b5b1e18e2628805dbd8fae868d021a7bd3bc0833022 |