1
0
Fork 0

[utils] Add parse_qs

This commit is contained in:
pukkandan 2021-08-23 00:32:00 +05:30
commit 4dfbf8696b
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
36 changed files with 101 additions and 135 deletions

View file

@ -4167,6 +4167,10 @@ def escape_url(url):
).geturl()
def parse_qs(url):
return compat_parse_qs(compat_urllib_parse_urlparse(url).query)
def read_batch_urls(batch_fd):
def fixup(url):
if not isinstance(url, compat_str):