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.1552756581
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.1552756581.tar.gz | 2.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| FilterDict-0.2.1552756581-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 16.9 kB
Release files / FilterDict-0.2.1552756581.tar.gz
| Download URL | FilterDict-0.2.1552756581.tar.gz |
|---|---|
| Size | 2.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e10e49b8e5b5b341f80372abcd4a21a3724f8cacba7e9f018f4b46c326c9f06d
|
|
BLAKE2b-256 checksum How to use checksums |
d30256e0f6887e3530906f3a8bbd51fc78a4b82083d672e4d457c57d72abe118
|
| 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.1552756581-py3-none-any.whl
| Download URL | FilterDict-0.2.1552756581-py3-none-any.whl |
|---|---|
| Size | 14.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
0de7f516840b20c5db320ad3ef01e799796e8a061c6eda7804a7c8fc56987a2c
|
|
BLAKE2b-256 checksum How to use checksums |
a837cdf09ccd275126be204bed804dc5d4bce654cf7babb0142a833031f7ef25
|
| 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
|