summary refs log tree commit diff
diff options
context:
space:
mode:
authorDéstin Reed <archcr8@gmail.com>2016-10-15 21:33:43 +0200
committerSergey M <dstftw@gmail.com>2016-10-16 02:33:43 +0700
commitac943d48d3b1041afd884543235c9fdf41c71aaa (patch)
tree8fb516ca3bcbc3a5b0f7874043c8acf9cfa4fd5c
parent73498a89216f3b83da7265eecfe616c17e54aba9 (diff)
downloadyoutube-dl-ac943d48d3b1041afd884543235c9fdf41c71aaa.tar.gz
youtube-dl-ac943d48d3b1041afd884543235c9fdf41c71aaa.tar.xz
youtube-dl-ac943d48d3b1041afd884543235c9fdf41c71aaa.zip
[Beatport] Update extractor name and tests
-rw-r--r--youtube_dl/extractor/beatport.py (renamed from youtube_dl/extractor/beatportpro.py)10
-rw-r--r--youtube_dl/extractor/extractors.py2
2 files changed, 6 insertions, 6 deletions
diff --git a/youtube_dl/extractor/beatportpro.py b/youtube_dl/extractor/beatport.py
index 3c7775d3e..e60709417 100644
--- a/youtube_dl/extractor/beatportpro.py
+++ b/youtube_dl/extractor/beatport.py
@@ -8,10 +8,10 @@ from ..compat import compat_str
 from ..utils import int_or_none
 
 
-class BeatportProIE(InfoExtractor):
-    _VALID_URL = r'https?://pro\.beatport\.com/track/(?P<display_id>[^/]+)/(?P<id>[0-9]+)'
+class BeatportIE(InfoExtractor):
+    _VALID_URL = r'https?://(?:www\.|pro\.)?beatport\.com/track/(?P<display_id>[^/]+)/(?P<id>[0-9]+)'
     _TESTS = [{
-        'url': 'https://pro.beatport.com/track/synesthesia-original-mix/5379371',
+        'url': 'https://beatport.com/track/synesthesia-original-mix/5379371',
         'md5': 'b3c34d8639a2f6a7f734382358478887',
         'info_dict': {
             'id': '5379371',
@@ -20,7 +20,7 @@ class BeatportProIE(InfoExtractor):
             'title': 'Froxic - Synesthesia (Original Mix)',
         },
     }, {
-        'url': 'https://pro.beatport.com/track/love-and-war-original-mix/3756896',
+        'url': 'https://beatport.com/track/love-and-war-original-mix/3756896',
         'md5': 'e44c3025dfa38c6577fbaeb43da43514',
         'info_dict': {
             'id': '3756896',
@@ -29,7 +29,7 @@ class BeatportProIE(InfoExtractor):
             'title': 'Wolfgang Gartner - Love & War (Original Mix)',
         },
     }, {
-        'url': 'https://pro.beatport.com/track/birds-original-mix/4991738',
+        'url': 'https://beatport.com/track/birds-original-mix/4991738',
         'md5': 'a1fd8e8046de3950fd039304c186c05f',
         'info_dict': {
             'id': '4991738',
diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py
index 9797d855a..0c7aadb6c 100644
--- a/youtube_dl/extractor/extractors.py
+++ b/youtube_dl/extractor/extractors.py
@@ -94,7 +94,7 @@ from .bbc import (
 from .beeg import BeegIE
 from .behindkink import BehindKinkIE
 from .bellmedia import BellMediaIE
-from .beatportpro import BeatportProIE
+from .beatport import BeatportIE
 from .bet import BetIE
 from .bigflix import BigflixIE
 from .bild import BildIE