A simple function to generate a simple filtered dict where a dict is created based on a dictionary and a function.
The returned dict contains all the kwargs if the passed function which are present in the inut dict.
This is espacially useful if you have a dict with more keys than needed to call a function or you call a function by reference and want to pass an dict as kwargs
Example:
d = dict(a=0,b=1,s1="foo",s2="bar")
def merge_strings(s1="",s2=""):
return s1+s2
print(merge_strings(**d))
#throws TypeError: merge_strings() got an unexpected keyword argument 'a'
print(merge_strings(**filter_dict(d,merge_strings)))
# returns foobar as expected
Release files for FilterDict 0.2.1552774624
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| FilterDict-0.2.1552774624.tar.gz | 2.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| FilterDict-0.2.1552774624-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 17.6 kB
Release files / FilterDict-0.2.1552774624.tar.gz
| Download URL | FilterDict-0.2.1552774624.tar.gz |
|---|---|
| Size | 2.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
921db90b114f4b1c6fc16186d3896e7327e1dccd326420950d2fdd81a8fd2faf
|
|
BLAKE2b-256 checksum How to use checksums |
6b026879eb066d272d24087fac3d1e5fc19f6133acea27a9038932fb577336a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.6
|
Release files / FilterDict-0.2.1552774624-py3-none-any.whl
| Download URL | FilterDict-0.2.1552774624-py3-none-any.whl |
|---|---|
| Size | 15.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
eb7592f6c3abe7584e207a553c43bcbce52ce6b1c2e8342f664f3fc88a64f815
|
|
BLAKE2b-256 checksum How to use checksums |
8ff12f1f4854c1d435d3223d37629661c2639f728a2d016ac06204393343285d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.6
|