mirror of https://github.com/yt-dlp/yt-dlp.git
[extractor] Allow extracting multiple groups in `_search_regex`
From #497, Authored by: fstirlitz
This commit is contained in:
parent
c888ffb95a
commit
198f7ea89e
|
@ -1111,6 +1111,8 @@ class InfoExtractor(object):
|
||||||
if group is None:
|
if group is None:
|
||||||
# return the first matching group
|
# return the first matching group
|
||||||
return next(g for g in mobj.groups() if g is not None)
|
return next(g for g in mobj.groups() if g is not None)
|
||||||
|
elif isinstance(group, (list, tuple)):
|
||||||
|
return tuple(mobj.group(g) for g in group)
|
||||||
else:
|
else:
|
||||||
return mobj.group(group)
|
return mobj.group(group)
|
||||||
elif default is not NO_DEFAULT:
|
elif default is not NO_DEFAULT:
|
||||||
|
|
Loading…
Reference in New Issue