diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-04-28 02:47:17 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-04-28 02:47:17 +0700 |
commit | 6cc622327ff8289f94894f3695ed31014c61cf8e (patch) | |
tree | 062f24b4bcc328c6d8d3621d32f5bc7b35f49756 /youtube_dl/utils.py | |
parent | 0fe7783eced5c62dbd95780c2150fd1080bd3927 (diff) |
[utils] Introduce merge_dicts
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 574284e94..b460393bf 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -2225,6 +2225,20 @@ def try_get(src, getter, expected_type=None): return v +def merge_dicts(*dicts): + merged = {} + for a_dict in dicts: + for k, v in a_dict.items(): + if v is None: + continue + if (k not in merged or + (isinstance(v, compat_str) and v and + isinstance(merged[k], compat_str) and + not merged[k])): + merged[k] = v + return merged + + def encode_compat_str(string, encoding=preferredencoding(), errors='strict'): return string if isinstance(string, compat_str) else compat_str(string, encoding, errors) |