1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-10-06 17:37:08 +02:00

[instagram:user] Improve _VALID_URL (Closes #7955)

This commit is contained in:
Sergey M․ 2015-12-23 21:13:31 +06:00
parent be514c856c
commit dcdc352371

View File

@ -47,7 +47,7 @@ def _real_extract(self, url):
class InstagramUserIE(InfoExtractor):
_VALID_URL = r'https://instagram\.com/(?P<username>[^/]{2,})/?(?:$|[?#])'
_VALID_URL = r'https?://(?:www\.)?instagram\.com/(?P<username>[^/]{2,})/?(?:$|[?#])'
IE_DESC = 'Instagram user profile'
IE_NAME = 'instagram:user'
_TEST = {