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.1566386417
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.1566386417.tar.gz | 2.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| FilterDict-0.2.1566386417-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 17.6 kB
Release files / FilterDict-0.2.1566386417.tar.gz
| Download URL | FilterDict-0.2.1566386417.tar.gz |
|---|---|
| Size | 2.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d19af0abcdb9dc8cacf31b4da79247cbe857d9b5b5071106df620964ece44974
|
|
BLAKE2b-256 checksum How to use checksums |
d0486f6f82127a02295e72a7031025f78805854929f2721e5f6717140b7ac438
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.8
|
Release files / FilterDict-0.2.1566386417-py3-none-any.whl
| Download URL | FilterDict-0.2.1566386417-py3-none-any.whl |
|---|---|
| Size | 15.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b92b7a8aaa5fa91dd82670adb3f794bbe4c7ad6302430c57548abb3190442407
|
|
BLAKE2b-256 checksum How to use checksums |
01b156117c92e3fb5f4d4a6e6331b331a7ca5131db153b94636396fc7ae3d735
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.8
|