1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-20 20:22:54 +02:00

[utils] Add encode_dict

This commit is contained in:
Sergey M․ 2015-09-06 07:22:20 +06:00
parent be0e5dbd83
commit 1639282434

View File

@ -1638,6 +1638,10 @@ def urlencode_postdata(*args, **kargs):
return compat_urllib_parse.urlencode(*args, **kargs).encode('ascii')
def encode_dict(d, encoding='utf-8'):
return dict((k.encode(encoding), v.encode(encoding)) for k, v in d.items())
try:
etree_iter = xml.etree.ElementTree.Element.iter
except AttributeError: # Python <=2.6