mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-18 06:09:17 +00:00
Improved documentation for _VALID_URL
Co-authored-by: dirkf <fieldhouse@gmx.net>
This commit is contained in:
parent
518d585eb7
commit
a73ef8c776
|
@ -447,8 +447,11 @@ class InfoExtractor:
|
|||
|
||||
|
||||
Subclasses of this should also be added to the list of extractors and
|
||||
should define a _VALID_URL regexp (a single string or a list) and, re-define the _real_extract() and
|
||||
(optionally) _real_initialize() methods.
|
||||
should define _VALID_URL as a regexp, or list (or tuple) of regexps, and
|
||||
re-define the _real_extract() and (optionally) _real_initialize() methods.
|
||||
The list syntax for _VALID_URL simplifies matching disparate URL patterns
|
||||
where conditional groups or subclass IEs would be needed to target the
|
||||
different locations of the ID field with a single regexp.
|
||||
|
||||
Subclasses may also override suitable() if necessary, but ensure the function
|
||||
signature is preserved and that this function imports everything it needs
|
||||
|
|
Loading…
Reference in a new issue