Skip to content

plugins.hiplayer: remove mediagovkw matcher #5848

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
plugins.hiplayer: remove mediagovkw matcher
  • Loading branch information
bastimeyer committed Feb 20, 2024
commit d53e86d1e810446b126bee2251290e09fbd072d7
2 changes: 0 additions & 2 deletions src/streamlink/plugins/hiplayer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""
$description United Arab Emirates CDN hosting live content for various websites in The Middle East.
$url alwasat.ly
$url media.gov.kw
$type live
$region various
"""
Expand All @@ -19,7 +18,6 @@


@pluginmatcher(name="alwasatly", pattern=re.compile(r"https?://(?:www\.)?alwasat\.ly"))
@pluginmatcher(name="mediagovkw", pattern=re.compile(r"https?://(?:www\.)?media\.gov\.kw"))
class HiPlayer(Plugin):
DAI_URL = "https://pubads.g.doubleclick.net/ssai/event/{0}/streams"

Expand Down
2 changes: 0 additions & 2 deletions tests/plugins/test_hiplayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@ class TestPluginCanHandleUrlHiPlayer(PluginCanHandleUrl):

should_match = [
("alwasatly", "https://alwasat.ly/live"),
("mediagovkw", "https://www.media.gov.kw/LiveTV.aspx?PanChannel=KTV1"),
("mediagovkw", "https://www.media.gov.kw/LiveTV.aspx?PanChannel=KTVSports"),
]